Spaces:
Running
Running
File size: 12,225 Bytes
f91d37c ce76f55 f91d37c 580917a f91d37c 684faa2 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ce76f55 9be2661 f91d37c ce76f55 f91d37c ce76f55 f91d37c 684faa2 f91d37c 684faa2 c45eb35 f91d37c ce76f55 c45eb35 ce76f55 f91d37c ce76f55 1929ebc bae53b5 d6765e8 b6ce9b7 f3b9a01 b6ce9b7 d6765e8 872d88a 46c8ce1 56625c3 a8476f9 7ea7bca a85bcb7 ce76f55 5ef5423 ce76f55 f91d37c ce76f55 f91d37c ce76f55 f91d37c ee85434 f91d37c ee85434 f91d37c | 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SupraLabs | Small Models, Big Impact</title>
<style>
:root {
--bg: #0f0f0f;
--surface: #1a1a1a;
--border: #333;
--text: #e0e0e0;
--accent: #536bfe; /* Supra Blue */
--muted: #888;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Inter', -apple-system, sans-serif;
line-height: 1.6;
padding: 2rem;
}
code, pre, .mono {
font-family: var(--font-mono);
}
.container {
max-width: 900px;
margin: 0 auto;
}
/* --- Header --- */
header {
border-bottom: 2px solid var(--border);
padding-bottom: 2rem;
margin-bottom: 3rem;
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.logo-area a {
text-decoration: none;
color: inherit;
}
.logo-area h1 {
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--accent);
line-height: 1;
display: flex;
align-items: center;
gap: 10px;
}
nav a {
color: var(--text);
text-decoration: none;
margin-left: 1.5rem;
font-size: 0.9rem;
border-bottom: 1px solid transparent;
}
nav a:hover {
border-bottom: 1px solid var(--accent);
}
/* --- Hero Section --- */
.hero {
margin-bottom: 4rem;
}
.hero h2 {
font-size: 3rem;
line-height: 1.1;
margin-bottom: 1.5rem;
font-weight: 800;
}
.hero p {
font-size: 1.2rem;
color: var(--muted);
max-width: 600px;
}
/* --- Feed / Posts --- */
.section-label {
display: block;
font-family: var(--font-mono);
color: var(--accent);
font-size: 0.8rem;
margin-bottom: 1rem;
text-transform: uppercase;
}
.post-card {
background: var(--surface);
border: 1px solid var(--border);
padding: 2rem;
margin-bottom: 1.5rem;
transition: transform 0.2s ease, border-color 0.2s ease;
text-decoration: none;
display: block;
color: inherit;
}
.post-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
}
.post-date {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
margin-bottom: 0.5rem;
}
.post-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.tags {
display: flex;
gap: 0.5rem;
}
.tag {
font-family: var(--font-mono);
font-size: 0.7rem;
padding: 2px 8px;
border: 1px solid var(--border);
border-radius: 4px;
}
/* --- Hardware Stats --- */
.stats-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-top: 4rem;
border-top: 1px solid var(--border);
padding-top: 2rem;
}
.stat-box {
padding: 1rem;
border-left: 2px solid var(--accent);
}
.stat-box small {
display: block;
color: var(--muted);
font-family: var(--font-mono);
}
footer {
margin-top: 6rem;
padding-bottom: 2rem;
font-size: 0.8rem;
color: var(--muted);
text-align: center;
}
@media (max-width: 600px) {
.hero h2 { font-size: 2rem; }
header { flex-direction: column; align-items: flex-start; gap: 1rem; }
nav a { margin-left: 0; margin-right: 1rem; }
.stats-grid { grid-template-columns: 1fr; }
}
.logo-area {
display: flex;
align-items: center;
gap: 10px;
font-weight: bold;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo-area" style="font-size: 1.5em;">
<a href="./index.html"><h1><img src="./image.png" style="height: 2em"> SupraLabs_</h1></a>
</div>
<nav>
<a href="#news">News</a>
<a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a>
<a href="#hardware">Hardware</a>
</nav>
</header>
<section class="hero">
<h2>Small weights.<br>Huge potential.</h2>
<p>We're democratizing AI by training high-performance models on consumer hardware. 100% Open Source. 0% Slop.</p>
</section>
<span class="section-label" id="news">// Latest_Updates</span>
<a href="moving-forward.html" class="post-card">
<div class="post-date">2026-05-20</div>
<h3>Moving Forward</h3>
<p>Focusing 100% on SupraLabs.</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#announcement</span>
<span class="tag">#supra-labs</span>
<span class="tag">#open-source</span>
<span class="tag">#llm-training</span>
<span class="tag">#llama</span>
<span class="tag">#tinyml</span>
</div>
</a>
<a href="knowledge-distillation.html" class="post-card">
<div class="post-date">2026-05-17</div>
<h3>Knowledge Distillation!</h3>
<p>teacher and student... lol</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#distillation</span>
<span class="tag">#smallnetworks</span>
<span class="tag">#opensource</span>
</div>
</a>
<a href="harley-ml-joined-us.html" class="post-card">
<div class="post-date">2026-05-17</div>
<h3>@Harley-ml joined us!</h3>
<p>We are scaling up our team!</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#join</span>
<span class="tag">#team</span>
<span class="tag">#harley-ml</span>
</div>
</a>
<a href="supra-v5-8m.html" class="post-card">
<div class="post-date">2026-05-16</div>
<h3>Supra Mini <b>v5 8M</b> is out!</h3>
<p>This is scaling up so much 👀</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#scalinglaws</span>
<span class="tag">#slm</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="supra-v4-new.html" class="post-card">
<div class="post-date">2026-05-15</div>
<h3>Supra Mini <b>v4</b> 2M is out!</h3>
<p>Take a look! It looks coherent!</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#smallmodel</span>
<span class="tag">#llama</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="supra-mini-v3-is-out.html" class="post-card">
<div class="post-date">2026-05-14</div>
<h3>Supra Mini <b>v3</b> 0.5M is out!</h3>
<p>And it's huge! Read all about it here...</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#new</span>
<span class="tag">#model</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="1bit-quantization.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>1Bit quantization: a sensitive area for tiny models</h3>
<p>1Bit quantization, a 50/50 chance area for tiny models...</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#research</span>
<span class="tag">#1bit</span>
<span class="tag">#llama</span>
<span class="tag">#open-source</span>
<span class="tag">#1.58b</span>
</div>
</a>
<a href="why-we-chose-llama.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Why we chose Llama over Mistral, DeepSeek, Qwen and Mamba for Supra Mini v3</h3>
<p>Researching the best architecture for small scale language models...</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#research</span>
<span class="tag">#architecture</span>
<span class="tag">#llama</span>
<span class="tag">#open-source</span>
<span class="tag">#tinyml</span>
</div>
</a>
<a href="we-released-our-now-model.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Our new model is out: Supra Mini <b>v2</b> 0.1M</h3>
<p>Check it out! It's cool!</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#new</span>
<span class="tag">#model</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="our-first-model-ever.html" class="post-card">
<div class="post-date">2026-05-12</div>
<h3>Our first model ever is there: Supra Mini 0.1M</h3>
<p>This is our first model at SupraLabs. Free. Tiny. Open Source.</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#model</span>
<span class="tag">#new</span>
<span class="tag">#open-source</span>
</div>
</a>
<a href="we-founded-supralabs.html" class="post-card">
<div class="post-date">2026-05-11</div>
<h3>We founded SupraLabs: Real Open Source AI</h3>
<p>Today marks the beginning of our journey. No corporate gatekeeping, just pure optimization on accessible hardware.</p>
<div class="tags" style="margin-top: 1.5rem;">
<span class="tag">#announcement</span>
<span class="tag">#roadmap</span>
<span class="tag">#open-source</span>
</div>
</a>
<div class="stats-grid" id="hardware">
<div class="stat-box">
<small>Main Node</small>
<strong>RTX 5060 Ti 16GB</strong>
<p class="mono" style="font-size: 0.8rem; color: var(--accent);">[LH-Tech AI]</p>
</div>
<div class="stat-box">
<small>Secondary Node</small>
<strong>RTX 2060 6GB</strong>
<p class="mono" style="font-size: 0.8rem; color: var(--accent);">[Harley-ML]</p>
</div>
</div>
<div class="stat-box">
<small>Third Node</small>
<strong>GTX 750 Ti 4GB</strong>
<p class="mono" style="font-size: 0.8rem; color: var(--accent);">[AxionLab]</p>
</div>
</div>
<footer>
<p class="mono">© 2026 SupraLabs // Built for the community.</p>
</footer>
</div>
</body>
</html> |