-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (94 loc) · 4.51 KB
/
index.html
File metadata and controls
102 lines (94 loc) · 4.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenNLP Research Group</title>
<!-- 添加此行链接外部样式 -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- 原有HTML内容保持不变 -->
<nav class="navbar">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#demos">Demos</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#publications">Publications</a></li>
<li><a href="#huggingface">Huggingface</a></li>
</ul>
</nav>
<section class="hero">
<h1>OpenNLP Research Group</h1>
<p>Advancing Open Research in Language Models and Dialogue Systems</p>
</section>
<section id="about" class="section">
<h2 class="section-title">Our Mission</h2>
<p>We are an open research collective dedicated to advancing NLP technologies through transparent collaboration. Our focus areas include:</p>
<br>
<ul>
<li><strong>Efficient LLM Training & Alignment</strong></li>
<li><strong>Multi-turn Dialogue Systems</strong></li>
<li><strong>Open-source Model Development</strong></li>
</ul>
</section>
<section id="demos" class="section">
<h2 class="section-title">Recent Demo Pages</h2>
<div class="projects-grid">
<article class="project-card">
<h3>Demos for F5R-TTS</h3>
<p>Demonstrate the F5R-TTS arch and results.</p>
<a href="https://frontierlabs.github.io/F5R/" target="_blank">View</a>
</article>
</div>
<!-- Add more publications -->
</section>
<section id="projects" class="section">
<h2 class="section-title">Open Projects</h2>
<div class="projects-grid">
<article class="project-card">
<h3>InternVL-Llama.cpp: High-Performance Adapter for InternVL
</h3>
<p>A specialized adaptation of llama.cpp for InternVL series multimodal models, enabling efficient CPU/GPU inference for vision-language tasks with optimized memory usage and performance.</p>
<a href="https://github.com/FrontierLabs/llama.cpp" target="_blank">View on GitHub →</a>
</article>
<article class="project-card">
<h3>Optimized Sign Language Processing Implementations (CSLR and Two-Stream)
</h3>
<p>Optimizing the Comprehensive CSLR Workflow Implementation, Traning Efficiency, Fixing Errors and Providing more dataset support for CSLR and Two-Stream methods.</p>
<a href="https://github.com/FrontierLabs/SLRT" target="_blank">View on GitHub →</a>
</article>
<!-- Add more project cards -->
</div>
</section>
<section id="publications" class="section">
<h2 class="section-title">Recent Publications</h2>
<div class="publication-item">
<h3>RAIDEN Benchmark: Evaluating Role-playing Conversational Agents with Measurement-Driven Custom Dialogues</h3>
<div class="pub-meta">
<span>Wu et al.</span> |
<em>COLING 2025</em> |
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="GitHub Logo" width="16">
<img src="https://huggingface.co/front/assets/huggingface_logo.svg" alt="HF Logo" width="16">
</div>
<div class="pub-links">
<a href="https://aclanthology.org/2025.coling-main.735.pdf" target="_blank">[PDF]</a>
<a href="https://github.com/FrontierLabs/RAIDEN" target="_blank">[Code]</a>
<a href="https://huggingface.co/FrontierLab/RPCAJudger" target="_blank">[Model]</a>
</div>
</div>
<!-- 新增More链接 -->
<a href="https://frontierlabs.github.io/publications" class="more-link">More →</a>
<!-- Add more publications -->
</section>
<section id="huggingface" class="section">
<h2 class="section-title">Huggingface Hub</h2>
<div class="hf-badges">
<a href="https://huggingface.co/FrontierLab" class="hf-badge" target="_blank">
<img src="https://huggingface.co/front/assets/huggingface_logo.svg" alt="HF Logo" width="30">
Our Data & Models Hub
</a>
</div>
</section>
</body>
</html>