-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
264 lines (241 loc) · 8.79 KB
/
index.html
File metadata and controls
264 lines (241 loc) · 8.79 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KR Labs</title>
<style>
body {
font-family: "Courier New", Courier, monospace;
font-size: 18px;
color: #000;
background-color: #fff;
max-width: 1280px;
margin: 0 auto;
padding: 0 50px;
box-sizing: border-box;
}
header {
text-align: center;
padding: 50px 0;
color: #000;
}
header h1 {
margin: 0;
font-size: 36px;
}
nav {
margin-top: 20px;
}
nav a {
color: #000;
text-decoration: none;
margin: 0 15px;
font-size: 20px;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 50vh;
text-align: center;
}
.hero h2 {
font-size: 32px;
margin-bottom: 20px;
}
.content {
padding: 50px 0;
text-align: center;
}
.content h2 {
margin-bottom: 20px;
font-size: 28px;
}
.content p {
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
text-align: justify;
}
.products {
padding: 50px 0;
text-align: center;
}
.products h2 {
font-size: 32px;
margin-bottom: 20px;
}
.product-item {
border: 1px solid #e0e0e0;
padding: 40px 20px;
margin: 20px auto;
max-width: 800px;
text-align: left;
}
.product-item h3 {
font-size: 28px;
margin-bottom: 15px;
}
.product-item p {
font-size: 18px;
line-height: 1.6;
}
.product-item ul {
list-style-type: none;
padding: 0;
font-size: 18px;
}
.product-item ul li {
margin: 10px 0;
}
.product-item a {
color: #000;
text-decoration: none;
font-weight: bold;
}
footer {
text-align: center;
padding: 20px 0;
margin-top: 50px;
}
</style>
</head>
<body>
<header>
<h1>KR Labs</h1>
<nav>
<a href="#about">About Us</a>
<a href="#products">Products</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="content" id="about">
<h2>About Us</h2>
<p>
KR Labs develops transparent and trustworthy AI solutions for
natural language processing (NLP) applications. Founded by NLP
researchers
<a href="https://hlt.bme.hu/en/kovacsadam">Ádám Kovács</a> and
<a href="https://informatics.tuwien.ac.at/people/gabor-recski"
>Gábor Recski</a
>, with AI business leader
<a href="https://www.linkedin.com/in/ashishanandroy/"
>Ashish Roy</a
>, the company bridges academic innovation with enterprise
needs. Our products are designed to empower AI application
developers, organizations, and individual users. We build
open-source technology that combines novel statistical and
rule-based methods, originally developed at
<a href="https://nlp.ec.tuwien.ac.at/">TUW-NLP</a> and
<a href="https://hlt.bme.hu/en/">HLT-Budapest</a>. From 2023 to
2024, KR Labs was incubated at the TU Wien Innovation Incubation
Center (i²c).
</p>
</section>
<!-- Products Section -->
<section class="products" id="products">
<h2>Our Products</h2>
<div class="product-item">
<h3>Lettuce<span style="color: #ff5757">Detect</span></h3>
<p>
<b>LettuceDetect</b> is a hallucination detection framework
designed for Retrieval-Augmented Generation (RAG) systems.
Built on
<a
href="https://github.com/AnswerDotAI/ModernBERT"
target="_blank"
>ModernBERT</a
>, it identifies unsupported segments in LLM-generated
answers in real time. It overcomes the limitations of short
context windows and the high computational costs associated
with large LLM-based detectors.
</p>
<ul>
<li>
<strong>Token-Level Detection</strong>: Flags
unsupported parts of answers.
</li>
<li>
<strong>Long-Context Support</strong>: Processes up to
4K tokens.
</li>
<li>
<strong>High Throughput</strong>: 30–60 examples per
second on a single GPU.
</li>
<li>
<strong>Open Source</strong>: Released under the MIT
License.
</li>
</ul>
<p>
<a
href="https://github.com/KRLabsOrg/LettuceDetect"
target="_blank"
>Learn More on GitHub</a
>
•
<a
href="https://pypi.org/project/lettucedetect"
target="_blank"
>Download on PyPI</a
>
•
<a href="https://huggingface.co/KRLabsOrg" target="_blank"
>View Models on Hugging Face</a
>
</p>
</div>
<div class="product-item">
<h3>Verbatim<span style="color: #ff5757">RAG</span></h3>
<p>
Traditional RAG systems retrieve relevant documents and then
allow an LLM to freely generate responses based on that
context. This can lead to hallucinations where the model
invents facts not present in the source material.
<b>VerbatimRAG</b> is our RAG framework that prevents
hallucination by ensuring all generated content is
explicitly derived from source documents.
</p>
<ul>
<li>
<strong>Minimalistic</strong>: We provide a minimalistc
end-to-end RAG system and many additional
functionalities that you can integrate into your own
solution.
</li>
<li>
<strong>How it works</strong>: We use extractive models
to mark the relevant parts of the context and then
implement dynamic template generation that is used to
generate the final response.
</li>
<li>
<strong>Open Source</strong>: Released under the MIT
License.
</li>
</ul>
<p>
<a
href="https://github.com/KRLabsOrg/Verbatim-RAG"
target="_blank"
>Learn More on GitHub</a
>
</p>
</div>
</section>
<section class="content" id="contact">
<h2>Contact Us</h2>
<p>
<center>
Email: <a href="mailto:info@krlabs.eu">contact@krlabs.eu</a>
</center>
</p>
</section>
<footer>
<a href="imprint.html">Imprint</a>
</footer>
</body>
</html>