Spaces:
Running
Running
Create we-founded-supralabs.html
Browse files- we-founded-supralabs.html +167 -0
we-founded-supralabs.html
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>We founded SupraLabs | Blog</title>
|
| 7 |
+
<style>
|
| 8 |
+
:root {
|
| 9 |
+
--bg: #0f0f0f;
|
| 10 |
+
--surface: #1a1a1a;
|
| 11 |
+
--border: #333;
|
| 12 |
+
--text: #e0e0e0;
|
| 13 |
+
--accent: #3f48fc; /* Supra Blue */
|
| 14 |
+
--muted: #888;
|
| 15 |
+
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 19 |
+
|
| 20 |
+
body {
|
| 21 |
+
background-color: var(--bg);
|
| 22 |
+
color: var(--text);
|
| 23 |
+
font-family: 'Inter', -apple-system, sans-serif;
|
| 24 |
+
line-height: 1.7;
|
| 25 |
+
padding: 2rem;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.container { max-width: 800px; margin: 0 auto; }
|
| 29 |
+
|
| 30 |
+
header {
|
| 31 |
+
border-bottom: 2px solid var(--border);
|
| 32 |
+
padding-bottom: 2rem;
|
| 33 |
+
margin-bottom: 3rem;
|
| 34 |
+
display: flex;
|
| 35 |
+
justify-content: space-between;
|
| 36 |
+
align-items: flex-end;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
.logo-area h1 {
|
| 40 |
+
font-size: 1.2rem;
|
| 41 |
+
text-transform: uppercase;
|
| 42 |
+
letter-spacing: 2px;
|
| 43 |
+
color: var(--accent);
|
| 44 |
+
text-decoration: none;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
a { color: var(--accent); text-decoration: none; }
|
| 48 |
+
a:hover { text-decoration: underline; }
|
| 49 |
+
|
| 50 |
+
.post-meta {
|
| 51 |
+
font-family: var(--font-mono);
|
| 52 |
+
color: var(--muted);
|
| 53 |
+
font-size: 0.9rem;
|
| 54 |
+
margin-bottom: 1rem;
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
h1.post-title {
|
| 58 |
+
font-size: 2.5rem;
|
| 59 |
+
line-height: 1.2;
|
| 60 |
+
margin-bottom: 2rem;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
.content h2 {
|
| 64 |
+
font-size: 1.5rem;
|
| 65 |
+
color: var(--accent);
|
| 66 |
+
margin-top: 2.5rem;
|
| 67 |
+
margin-bottom: 1rem;
|
| 68 |
+
font-family: var(--font-mono);
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
.content p { margin-bottom: 1.5rem; }
|
| 72 |
+
|
| 73 |
+
.content ul {
|
| 74 |
+
margin-bottom: 1.5rem;
|
| 75 |
+
padding-left: 1.5rem;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
.content li { margin-bottom: 0.5rem; }
|
| 79 |
+
|
| 80 |
+
.hardware-card {
|
| 81 |
+
background: var(--surface);
|
| 82 |
+
border: 1px solid var(--border);
|
| 83 |
+
padding: 1.5rem;
|
| 84 |
+
border-radius: 4px;
|
| 85 |
+
margin: 2rem 0;
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
.back-link {
|
| 89 |
+
display: inline-block;
|
| 90 |
+
margin-bottom: 2rem;
|
| 91 |
+
font-family: var(--font-mono);
|
| 92 |
+
font-size: 0.8rem;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
footer {
|
| 96 |
+
margin-top: 5rem;
|
| 97 |
+
border-top: 1px solid var(--border);
|
| 98 |
+
padding-top: 2rem;
|
| 99 |
+
font-size: 0.8rem;
|
| 100 |
+
color: var(--muted);
|
| 101 |
+
text-align: center;
|
| 102 |
+
}
|
| 103 |
+
|
| 104 |
+
code {
|
| 105 |
+
background: #2a2a2a;
|
| 106 |
+
padding: 0.2rem 0.4rem;
|
| 107 |
+
border-radius: 3px;
|
| 108 |
+
font-family: var(--font-mono);
|
| 109 |
+
font-size: 0.9rem;
|
| 110 |
+
}
|
| 111 |
+
</style>
|
| 112 |
+
</head>
|
| 113 |
+
<body>
|
| 114 |
+
<div class="container">
|
| 115 |
+
<header>
|
| 116 |
+
<div class="logo-area">
|
| 117 |
+
<a href="../index.html"><h1>SupraLabs_</h1></a>
|
| 118 |
+
</div>
|
| 119 |
+
<div class="post-meta">/blog/announcement</div>
|
| 120 |
+
</header>
|
| 121 |
+
|
| 122 |
+
<a href="../index.html" class="back-link"><-- Back to terminal</a>
|
| 123 |
+
|
| 124 |
+
<article class="content">
|
| 125 |
+
<div class="post-meta">DATE: 2026-05-11 | AUTH: AXION & LH-TECH</div>
|
| 126 |
+
<h1 class="post-title">We founded SupraLabs: Real Open Source AI for everyone.</h1>
|
| 127 |
+
|
| 128 |
+
<p>The AI landscape is currently dominated by massive corporations and "open-weights" models that aren't truly open. We believe that the future of AI belongs to the individuals, the hobbyists, and the developers who don't have access to massive H100 clusters.</p>
|
| 129 |
+
|
| 130 |
+
<p><strong>Today, we officially announce the foundation of SupraLabs.</strong></p>
|
| 131 |
+
|
| 132 |
+
<h2>🤝 The Collaboration</h2>
|
| 133 |
+
<p>SupraLabs is a joint venture between <strong>@AxionLab-official</strong> and <strong>@LH-Tech-AI</strong>. We combined our hardware and our passion for optimization to create something that hasn't been done this way before: training useful, small-scale models on the hardware you actually own.</p>
|
| 134 |
+
|
| 135 |
+
<h2>🎯 Our Mission</h2>
|
| 136 |
+
<p>We are not here to build another trillion-parameter monster. Our focus is on:</p>
|
| 137 |
+
<ul>
|
| 138 |
+
<li><strong>Extreme Accessibility:</strong> Models that run on a laptop or even older GPUs.</li>
|
| 139 |
+
<li><strong>Transparency:</strong> Complete open-source code, data insights, and training logs.</li>
|
| 140 |
+
<li><strong>No Slop:</strong> We prioritize clean data and efficient architectures over "trashy" massive datasets.</li>
|
| 141 |
+
</ul>
|
| 142 |
+
|
| 143 |
+
<h2>🏗️ The Roadmap</h2>
|
| 144 |
+
<p>We are starting our journey with two main projects that will push the boundaries of what's possible on consumer chips:</p>
|
| 145 |
+
<ul>
|
| 146 |
+
<li><code>Supra-10M</code>: Our flagship small model. Designed for reasoning and chat, trained on an RTX 5060 Ti 16GB.</li>
|
| 147 |
+
<li><code>Supra-1M</code>: The "Legacy-Hero". Optimized to run and train even on a GTX 750Ti 4GB.</li>
|
| 148 |
+
</ul>
|
| 149 |
+
|
| 150 |
+
<div class="hardware-card">
|
| 151 |
+
<h3 style="margin-bottom: 1rem; font-family: var(--font-mono); font-size: 1rem;">[CURRENT_COMPUTE_STREAMS]</h3>
|
| 152 |
+
<p>• Node 01: RTX 5060 Ti 16GB (LH-Tech AI) - <i>Primary Training Node</i></p>
|
| 153 |
+
<p>• Node 02: GTX 750Ti 4GB (AxionLab) - <i>Optimization & Testing Node</i></p>
|
| 154 |
+
</div>
|
| 155 |
+
|
| 156 |
+
<h2>🫶 Join Us</h2>
|
| 157 |
+
<p>This is a community effort. If you are tired of corporate AI and want to build the "Small Model Revolution" with us, feel free to reach out on HuggingFace or join our organization. Feedback is always welcome!</p>
|
| 158 |
+
|
| 159 |
+
<p style="margin-top: 3rem; font-style: italic;">Stay tuned. The first weights are coming soon.</p>
|
| 160 |
+
</article>
|
| 161 |
+
|
| 162 |
+
<footer>
|
| 163 |
+
<p class="mono">© 2026 SupraLabs // EOF</p>
|
| 164 |
+
</footer>
|
| 165 |
+
</div>
|
| 166 |
+
</body>
|
| 167 |
+
</html>
|