LH-Tech-AI commited on
Commit
e516da6
·
verified ·
1 Parent(s): a85bcb7

Create our-first-model-ever.html

Browse files
Files changed (1) hide show
  1. our-first-model-ever.html +228 -0
our-first-model-ever.html ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Our first model ever is there: Supra Mini 0.1M | SupraLabs Blog</title>
7
+ <style>
8
+ :root {
9
+ --bg: #0f0f0f;
10
+ --surface: #1a1a1a;
11
+ --border: #333;
12
+ --text: #e0e0e0;
13
+ --accent: #536bfe; /* Supra Blue */
14
+ --muted: #888;
15
+ --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
16
+ }
17
+ * {
18
+ margin: 0;
19
+ padding: 0;
20
+ box-sizing: border-box;
21
+ }
22
+ body {
23
+ background-color: var(--bg);
24
+ color: var(--text);
25
+ font-family: 'Inter', -apple-system, sans-serif;
26
+ line-height: 1.6;
27
+ padding: 2rem;
28
+ }
29
+ code, pre, .mono {
30
+ font-family: var(--font-mono);
31
+ }
32
+ .container {
33
+ max-width: 900px;
34
+ margin: 0 auto;
35
+ }
36
+ /* --- Header --- */
37
+ header {
38
+ border-bottom: 2px solid var(--border);
39
+ padding-bottom: 2rem;
40
+ margin-bottom: 3rem;
41
+ display: flex;
42
+ justify-content: space-between;
43
+ align-items: flex-end;
44
+ }
45
+ .logo-area h1 {
46
+ font-size: 1.2rem;
47
+ text-transform: uppercase;
48
+ letter-spacing: 2px;
49
+ color: var(--accent);
50
+ line-height: 1;
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 10px;
54
+ }
55
+ .logo-area a {
56
+ text-decoration: none;
57
+ color: inherit;
58
+ }
59
+ nav a {
60
+ color: var(--text);
61
+ text-decoration: none;
62
+ margin-left: 1.5rem;
63
+ font-size: 0.9rem;
64
+ border-bottom: 1px solid transparent;
65
+ }
66
+ nav a:hover {
67
+ border-bottom: 1px solid var(--accent);
68
+ }
69
+ /* --- Blog Post Layout --- */
70
+ .post-header {
71
+ margin-bottom: 3rem;
72
+ }
73
+ .post-header h2 {
74
+ font-size: 3rem;
75
+ line-height: 1.1;
76
+ margin-bottom: 1rem;
77
+ font-weight: 800;
78
+ }
79
+ .post-meta {
80
+ font-family: var(--font-mono);
81
+ color: var(--accent);
82
+ font-size: 0.9rem;
83
+ margin-bottom: 2rem;
84
+ }
85
+ .post-content {
86
+ background: var(--surface);
87
+ border: 1px solid var(--border);
88
+ padding: 3rem;
89
+ margin-bottom: 4rem;
90
+ }
91
+ .post-content h2 {
92
+ font-size: 1.8rem;
93
+ margin: 2.5rem 0 1rem 0;
94
+ color: var(--accent);
95
+ }
96
+ .post-content h2:first-child {
97
+ margin-top: 0;
98
+ }
99
+ .post-content p {
100
+ margin-bottom: 1.5rem;
101
+ font-size: 1.1rem;
102
+ color: var(--text);
103
+ }
104
+ .post-content ul {
105
+ margin-bottom: 1.5rem;
106
+ padding-left: 1.5rem;
107
+ }
108
+ .post-content li {
109
+ margin-bottom: 0.5rem;
110
+ }
111
+ .post-content strong {
112
+ color: #fff;
113
+ }
114
+ .post-content img.post-logo {
115
+ margin-bottom: 2rem;
116
+ border: 1px solid var(--border);
117
+ }
118
+ /* --- Tags --- */
119
+ .tags {
120
+ display: flex;
121
+ gap: 0.5rem;
122
+ margin-top: 2rem;
123
+ }
124
+ .tag {
125
+ font-family: var(--font-mono);
126
+ font-size: 0.7rem;
127
+ padding: 2px 8px;
128
+ border: 1px solid var(--border);
129
+ border-radius: 4px;
130
+ color: var(--muted);
131
+ }
132
+ /* --- Hardware Stats (Consistent with index) --- */
133
+ .stats-grid {
134
+ display: grid;
135
+ grid-template-columns: 1fr 1fr;
136
+ gap: 1rem;
137
+ margin-top: 4rem;
138
+ border-top: 1px solid var(--border);
139
+ padding-top: 2rem;
140
+ }
141
+ .stat-box {
142
+ padding: 1rem;
143
+ border-left: 2px solid var(--accent);
144
+ }
145
+ .stat-box small {
146
+ display: block;
147
+ color: var(--muted);
148
+ font-family: var(--font-mono);
149
+ }
150
+ footer {
151
+ margin-top: 6rem;
152
+ padding-bottom: 2rem;
153
+ font-size: 0.8rem;
154
+ color: var(--muted);
155
+ text-align: center;
156
+ }
157
+ @media (max-width: 600px) {
158
+ .post-header h2 { font-size: 2rem; }
159
+ .post-content { padding: 1.5rem; }
160
+ header { flex-direction: column; align-items: flex-start; gap: 1rem; }
161
+ nav a { margin-left: 0; margin-right: 1rem; }
162
+ .stats-grid { grid-template-columns: 1fr; }
163
+ }
164
+ .logo-area {
165
+ display: flex;
166
+ align-items: center;
167
+ gap: 10px;
168
+ font-weight: bold;
169
+ font-size: 1.2rem;
170
+ }
171
+ </style>
172
+ </head>
173
+ <body>
174
+
175
+ <div class="container">
176
+ <header>
177
+ <div class="logo-area" style="font-size: 1.5em;">
178
+ <a href="./index.html"><h1><img src="./image.png" style="height: 2em"> SupraLabs_</h1></a>
179
+ </div>
180
+ <nav>
181
+ <a href="./index.html#news">News</a>
182
+ <a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a>
183
+ <a href="./index.html#hardware">Hardware</a>
184
+ </nav>
185
+ </header>
186
+
187
+ <article>
188
+ <div class="post-header">
189
+ <div class="post-meta">// 2026-05-12 | Model_Announcement</div>
190
+ <h2>Our first model ever is there:<br>Supra Mini 0.1M</h2>
191
+ </div>
192
+
193
+ <div class="post-content">
194
+ <p>Supra Mini 0.1M is here! It's there. It's free. It's open source.</p>
195
+
196
+ <h2>What is does</h2>
197
+ <p>It proves our concept of making very tiny language models (SLMS) so good so they can compete with way larger models. It's a first beta, not a production model.</p>
198
+
199
+ <h2>What is does NOT</h2>
200
+ <p>It's no Opus 4.7. It's no GLM-5.1. It's not even a GPT-2-Small.</p>
201
+
202
+ <h2>What we think about it</h2>
203
+ <p>It's our first model here at SupraLabs and we will continue releasing better and better models next time.</p>
204
+
205
+ <h2>🏗️ Future roadmap</h2>
206
+ <ul>
207
+ <li><strong>Supra-10M</strong> - Base, Chat, Reasoning. Trained on RTX 5060 Ti 16GB, leveraging Nvidia technologies and CUDA.</li>
208
+ <li><strong>Supra-1M</strong> - Base, Chat, Reasoning. Trained on GTX 750Ti 4GB, pushing the limits of optimization.</li>
209
+ </ul>
210
+
211
+ <h2>Summary</h2>
212
+ <p>Supra Mini 0.1M is out. It's okay. It's a first beta. Progress will continue with our next models. Stay tuned.</p>
213
+
214
+ <div class="tags">
215
+ <span class="tag">#model</span>
216
+ <span class="tag">#new</span>
217
+ <span class="tag">#open-source</span>
218
+ </div>
219
+ </div>
220
+ </article>
221
+
222
+ <footer>
223
+ <p class="mono">&copy; 2026 SupraLabs // Built for the community.</p>
224
+ </footer>
225
+ </div>
226
+
227
+ </body>
228
+ </html>