ameforge commited on
Commit
7da5715
·
verified ·
1 Parent(s): cf91278

Update organization card with professional design

Browse files
Files changed (1) hide show
  1. index.html +492 -18
index.html CHANGED
@@ -1,19 +1,493 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
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>AMEFORGE Independent AI Research Studio</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
8
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet" />
10
+ <style>
11
+ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
12
+
13
+ :root {
14
+ --navy: #0d1b2a;
15
+ --navy-mid: #1a2e45;
16
+ --blue: #1e5fa8;
17
+ --blue-light: #2d7dd2;
18
+ --accent: #e8a020;
19
+ --text: #1a1a2e;
20
+ --text-muted: #5a6a7a;
21
+ --border: #e2e8f0;
22
+ --bg: #f8fafc;
23
+ --white: #ffffff;
24
+ }
25
+
26
+ body {
27
+ font-family: 'DM Sans', sans-serif;
28
+ background: var(--bg);
29
+ color: var(--text);
30
+ line-height: 1.6;
31
+ }
32
+
33
+ /* Header */
34
+ .header {
35
+ background: var(--navy);
36
+ color: white;
37
+ padding: 3rem 2rem 2.5rem;
38
+ }
39
+
40
+ .header-inner {
41
+ max-width: 860px;
42
+ margin: 0 auto;
43
+ }
44
+
45
+ .org-label {
46
+ font-size: 0.7rem;
47
+ font-weight: 600;
48
+ letter-spacing: 0.15em;
49
+ text-transform: uppercase;
50
+ color: var(--accent);
51
+ margin-bottom: 0.75rem;
52
+ }
53
+
54
+ .org-name {
55
+ font-family: 'Instrument Serif', serif;
56
+ font-size: 2.8rem;
57
+ font-weight: 400;
58
+ letter-spacing: -0.02em;
59
+ line-height: 1.1;
60
+ margin-bottom: 1rem;
61
+ }
62
+
63
+ .org-tagline {
64
+ font-size: 1rem;
65
+ color: rgba(255,255,255,0.7);
66
+ max-width: 560px;
67
+ line-height: 1.6;
68
+ margin-bottom: 1.5rem;
69
+ }
70
+
71
+ .header-links {
72
+ display: flex;
73
+ gap: 1rem;
74
+ flex-wrap: wrap;
75
+ }
76
+
77
+ .header-links a {
78
+ display: inline-flex;
79
+ align-items: center;
80
+ gap: 0.4rem;
81
+ font-size: 0.82rem;
82
+ font-weight: 500;
83
+ color: rgba(255,255,255,0.8);
84
+ text-decoration: none;
85
+ padding: 0.4rem 0.9rem;
86
+ border: 1px solid rgba(255,255,255,0.2);
87
+ border-radius: 4px;
88
+ transition: all 0.2s;
89
+ }
90
+
91
+ .header-links a:hover {
92
+ background: rgba(255,255,255,0.1);
93
+ color: white;
94
+ border-color: rgba(255,255,255,0.4);
95
+ }
96
+
97
+ /* Main content */
98
+ .main {
99
+ max-width: 860px;
100
+ margin: 0 auto;
101
+ padding: 2.5rem 2rem;
102
+ }
103
+
104
+ /* Section */
105
+ .section {
106
+ margin-bottom: 2.5rem;
107
+ }
108
+
109
+ .section-title {
110
+ font-size: 0.7rem;
111
+ font-weight: 600;
112
+ letter-spacing: 0.12em;
113
+ text-transform: uppercase;
114
+ color: var(--text-muted);
115
+ margin-bottom: 1.25rem;
116
+ padding-bottom: 0.6rem;
117
+ border-bottom: 1px solid var(--border);
118
+ }
119
+
120
+ /* About */
121
+ .about-text {
122
+ font-size: 0.95rem;
123
+ color: var(--text);
124
+ line-height: 1.75;
125
+ max-width: 680px;
126
+ }
127
+
128
+ /* Research grid */
129
+ .research-grid {
130
+ display: grid;
131
+ grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
132
+ gap: 1rem;
133
+ }
134
+
135
+ .research-card {
136
+ background: var(--white);
137
+ border: 1px solid var(--border);
138
+ border-radius: 6px;
139
+ padding: 1.25rem;
140
+ transition: border-color 0.2s, box-shadow 0.2s;
141
+ }
142
+
143
+ .research-card:hover {
144
+ border-color: var(--blue-light);
145
+ box-shadow: 0 2px 12px rgba(30, 95, 168, 0.08);
146
+ }
147
+
148
+ .research-card-header {
149
+ display: flex;
150
+ align-items: flex-start;
151
+ justify-content: space-between;
152
+ margin-bottom: 0.6rem;
153
+ gap: 0.5rem;
154
+ }
155
+
156
+ .research-name {
157
+ font-size: 0.92rem;
158
+ font-weight: 600;
159
+ color: var(--navy);
160
+ font-family: 'DM Sans', monospace;
161
+ }
162
+
163
+ .badge {
164
+ font-size: 0.62rem;
165
+ font-weight: 600;
166
+ letter-spacing: 0.06em;
167
+ text-transform: uppercase;
168
+ padding: 0.2rem 0.5rem;
169
+ border-radius: 3px;
170
+ white-space: nowrap;
171
+ flex-shrink: 0;
172
+ }
173
+
174
+ .badge-published { background: #dcfce7; color: #166534; }
175
+ .badge-active { background: #dbeafe; color: #1e40af; }
176
+ .badge-research { background: #fef3c7; color: #92400e; }
177
+
178
+ .research-desc {
179
+ font-size: 0.82rem;
180
+ color: var(--text-muted);
181
+ line-height: 1.55;
182
+ margin-bottom: 0.75rem;
183
+ }
184
+
185
+ .research-links {
186
+ display: flex;
187
+ gap: 0.5rem;
188
+ flex-wrap: wrap;
189
+ }
190
+
191
+ .research-link {
192
+ font-size: 0.75rem;
193
+ font-weight: 500;
194
+ color: var(--blue);
195
+ text-decoration: none;
196
+ padding: 0.2rem 0.5rem;
197
+ background: #eff6ff;
198
+ border-radius: 3px;
199
+ transition: background 0.15s;
200
+ }
201
+
202
+ .research-link:hover {
203
+ background: #dbeafe;
204
+ }
205
+
206
+ /* Stats row */
207
+ .stats-row {
208
+ display: flex;
209
+ gap: 2rem;
210
+ flex-wrap: wrap;
211
+ padding: 1.5rem;
212
+ background: var(--white);
213
+ border: 1px solid var(--border);
214
+ border-radius: 6px;
215
+ }
216
+
217
+ .stat-item {
218
+ text-align: left;
219
+ }
220
+
221
+ .stat-value {
222
+ font-family: 'Instrument Serif', serif;
223
+ font-size: 1.8rem;
224
+ color: var(--navy);
225
+ line-height: 1;
226
+ margin-bottom: 0.2rem;
227
+ }
228
+
229
+ .stat-label {
230
+ font-size: 0.75rem;
231
+ color: var(--text-muted);
232
+ font-weight: 500;
233
+ }
234
+
235
+ /* Models table */
236
+ .models-table {
237
+ width: 100%;
238
+ border-collapse: collapse;
239
+ font-size: 0.85rem;
240
+ }
241
+
242
+ .models-table th {
243
+ text-align: left;
244
+ font-size: 0.7rem;
245
+ font-weight: 600;
246
+ letter-spacing: 0.08em;
247
+ text-transform: uppercase;
248
+ color: var(--text-muted);
249
+ padding: 0.6rem 0.75rem;
250
+ border-bottom: 1px solid var(--border);
251
+ }
252
+
253
+ .models-table td {
254
+ padding: 0.7rem 0.75rem;
255
+ border-bottom: 1px solid var(--border);
256
+ color: var(--text);
257
+ }
258
+
259
+ .models-table tr:last-child td {
260
+ border-bottom: none;
261
+ }
262
+
263
+ .models-table a {
264
+ color: var(--blue);
265
+ text-decoration: none;
266
+ font-weight: 500;
267
+ font-family: monospace;
268
+ font-size: 0.82rem;
269
+ }
270
+
271
+ .models-table a:hover {
272
+ text-decoration: underline;
273
+ }
274
+
275
+ /* Contact */
276
+ .contact-block {
277
+ background: var(--navy);
278
+ color: white;
279
+ border-radius: 6px;
280
+ padding: 1.5rem;
281
+ display: flex;
282
+ align-items: center;
283
+ justify-content: space-between;
284
+ flex-wrap: wrap;
285
+ gap: 1rem;
286
+ }
287
+
288
+ .contact-text h3 {
289
+ font-family: 'Instrument Serif', serif;
290
+ font-size: 1.2rem;
291
+ font-weight: 400;
292
+ margin-bottom: 0.3rem;
293
+ }
294
+
295
+ .contact-text p {
296
+ font-size: 0.82rem;
297
+ color: rgba(255,255,255,0.65);
298
+ }
299
+
300
+ .contact-email {
301
+ display: inline-flex;
302
+ align-items: center;
303
+ gap: 0.4rem;
304
+ font-size: 0.85rem;
305
+ font-weight: 500;
306
+ color: white;
307
+ text-decoration: none;
308
+ padding: 0.6rem 1.2rem;
309
+ background: var(--blue);
310
+ border-radius: 4px;
311
+ transition: background 0.2s;
312
+ }
313
+
314
+ .contact-email:hover {
315
+ background: var(--blue-light);
316
+ }
317
+
318
+ /* Footer */
319
+ .footer {
320
+ text-align: center;
321
+ padding: 1.5rem;
322
+ font-size: 0.75rem;
323
+ color: var(--text-muted);
324
+ border-top: 1px solid var(--border);
325
+ margin-top: 1rem;
326
+ }
327
+
328
+ @media (max-width: 600px) {
329
+ .org-name { font-size: 2rem; }
330
+ .research-grid { grid-template-columns: 1fr; }
331
+ .stats-row { gap: 1.5rem; }
332
+ }
333
+ </style>
334
+ </head>
335
+ <body>
336
+
337
+ <!-- Header -->
338
+ <div class="header">
339
+ <div class="header-inner">
340
+ <div class="org-label">AI Research Studio</div>
341
+ <h1 class="org-name">AMEFORGE</h1>
342
+ <p class="org-tagline">We design novel neural architectures, publish peer-reviewed research, and deploy production-ready models — with software that brings these innovations directly to users.</p>
343
+ <div class="header-links">
344
+ <a href="https://ameforge.tech" target="_blank">🌐 ameforge.tech</a>
345
+ <a href="https://arxiv.org/abs/2603.14651" target="_blank">📄 arXiv</a>
346
+ <a href="https://github.com/amewebstudio" target="_blank">⌥ GitHub</a>
347
+ <a href="mailto:contact@ameforge.tech">✉ contact@ameforge.tech</a>
348
+ </div>
349
+ </div>
350
+ </div>
351
+
352
+ <!-- Main -->
353
+ <div class="main">
354
+
355
+ <!-- About -->
356
+ <div class="section">
357
+ <div class="section-title">About</div>
358
+ <p class="about-text">
359
+ Ameforge is an independent AI research studio focused on advancing the state of the art in neural architecture design, efficient inference, and continual learning. Our research spans time-series forecasting, natural language processing, and sparse neural networks. We publish openly on arXiv and release models and tools for the research community.
360
+ </p>
361
+ </div>
362
+
363
+ <!-- Research -->
364
+ <div class="section">
365
+ <div class="section-title">Research Projects</div>
366
+ <div class="research-grid">
367
+
368
+ <div class="research-card">
369
+ <div class="research-card-header">
370
+ <span class="research-name">EARCP</span>
371
+ <span class="badge badge-published">Published</span>
372
+ </div>
373
+ <p class="research-desc">Ensemble Adaptive Recurrent Cascade Predictor. Multi-expert architecture combining CNN, BiLSTM, and Transformer for adaptive time-series prediction. Validated on Kaggle Hull Tactical (Rank 708 / 18,000+, Top 24%).</p>
374
+ <div class="research-links">
375
+ <a href="https://arxiv.org/abs/2603.14651" target="_blank" class="research-link">arXiv Paper</a>
376
+ <a href="https://pypi.org/project/earcp/" target="_blank" class="research-link">pip install earcp</a>
377
+ <a href="https://www.kaggle.com/competitions/hull-tactical-market-prediction/leaderboard" target="_blank" class="research-link">Kaggle</a>
378
+ </div>
379
+ </div>
380
+
381
+ <div class="research-card">
382
+ <div class="research-card-header">
383
+ <span class="research-name">SCLM</span>
384
+ <span class="badge badge-active">Active</span>
385
+ </div>
386
+ <p class="research-desc">Sparse Cascade Language Model. High-efficiency language modeling architecture built on EARCP principles. Dual-license model: open research use and commercial licensing available.</p>
387
+ <div class="research-links">
388
+ <a href="https://ameforge.tech/research/sclm" target="_blank" class="research-link">Documentation</a>
389
+ <a href="mailto:contact@ameforge.tech" class="research-link">Commercial License</a>
390
+ </div>
391
+ </div>
392
+
393
+ <div class="research-card">
394
+ <div class="research-card-header">
395
+ <span class="research-name">SparseMind</span>
396
+ <span class="badge badge-research">Research</span>
397
+ </div>
398
+ <p class="research-desc">Sparse neural architecture research achieving 87.5% weight sparsity with competitive perplexity. Designed for efficient inference on resource-constrained environments.</p>
399
+ <div class="research-links">
400
+ <a href="https://ameforge.tech/research/sparse" target="_blank" class="research-link">Learn more</a>
401
+ </div>
402
+ </div>
403
+
404
+ <div class="research-card">
405
+ <div class="research-card-header">
406
+ <span class="research-name">NexusBPE</span>
407
+ <span class="badge badge-active">Active</span>
408
+ </div>
409
+ <p class="research-desc">Custom Byte-Pair Encoding tokenizer trained on a curated multilingual corpus (code, natural language, technical documents). Designed to complement Ameforge's internal language model research.</p>
410
+ <div class="research-links">
411
+ <a href="https://huggingface.co/AMFORGE/gearcut_tok" target="_blank" class="research-link">HuggingFace</a>
412
+ <a href="https://ameforge.tech/research/nexusbpe" target="_blank" class="research-link">Documentation</a>
413
+ </div>
414
+ </div>
415
+
416
+ <div class="research-card">
417
+ <div class="research-card-header">
418
+ <span class="research-name">MemoryBank</span>
419
+ <span class="badge badge-research">Research</span>
420
+ </div>
421
+ <p class="research-desc">Long-term memory mechanism for neural networks addressing catastrophic forgetting in continual learning scenarios. LPOLMemory architecture for persistent knowledge retention.</p>
422
+ <div class="research-links">
423
+ <a href="https://ameforge.tech/research/memorybank" target="_blank" class="research-link">Learn more</a>
424
+ </div>
425
+ </div>
426
+
427
+ </div>
428
+ </div>
429
+
430
+ <!-- Models -->
431
+ <div class="section">
432
+ <div class="section-title">Published Models</div>
433
+ <div style="background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;">
434
+ <table class="models-table">
435
+ <thead>
436
+ <tr>
437
+ <th>Model</th>
438
+ <th>Task</th>
439
+ <th>License</th>
440
+ <th>Status</th>
441
+ </tr>
442
+ </thead>
443
+ <tbody>
444
+ <tr>
445
+ <td><a href="https://huggingface.co/AMFORGE/gc_editor1" target="_blank">AMFORGE/gc_editor1</a></td>
446
+ <td>Text Generation</td>
447
+ <td>CKL</td>
448
+ <td><span class="badge badge-active">Active</span></td>
449
+ </tr>
450
+ <tr>
451
+ <td><a href="https://huggingface.co/AMFORGE/gc_editor" target="_blank">AMFORGE/gc_editor</a></td>
452
+ <td>Text Generation</td>
453
+ <td>CKL</td>
454
+ <td><span class="badge badge-active">Active</span></td>
455
+ </tr>
456
+ <tr>
457
+ <td><a href="https://huggingface.co/AMFORGE/gearcut_tok" target="_blank">AMFORGE/gearcut_tok</a></td>
458
+ <td>Tokenizer (NexusBPE)</td>
459
+ <td>CKL</td>
460
+ <td><span class="badge badge-active">Active</span></td>
461
+ </tr>
462
+ <tr>
463
+ <td><a href="https://huggingface.co/AMFORGE/gc_editorablationtest" target="_blank">AMFORGE/gc_editorablationtest</a></td>
464
+ <td>Ablation Study</td>
465
+ <td>CKL</td>
466
+ <td><span class="badge badge-research">Research</span></td>
467
+ </tr>
468
+ </tbody>
469
+ </table>
470
+ </div>
471
+ <p style="font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem;">All models are released under the CKL (Custom Knowledge License). Commercial licensing available upon request.</p>
472
+ </div>
473
+
474
+ <!-- Contact -->
475
+ <div class="section">
476
+ <div class="section-title">Contact</div>
477
+ <div class="contact-block">
478
+ <div class="contact-text">
479
+ <h3>Research collaboration &amp; licensing</h3>
480
+ <p>Interested in our research, commercial licensing, or partnership opportunities?</p>
481
+ </div>
482
+ <a href="mailto:contact@ameforge.tech" class="contact-email">✉ contact@ameforge.tech</a>
483
+ </div>
484
+ </div>
485
+
486
+ </div>
487
+
488
+ <div class="footer">
489
+ © 2025 Ameforge. All rights reserved. &nbsp;·&nbsp; <a href="https://ameforge.tech" style="color: inherit;">ameforge.tech</a>
490
+ </div>
491
+
492
+ </body>
493
  </html>