| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>AMEFORGE — Independent AI Research Studio</title> |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| <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" /> |
| <style> |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |
| |
| :root { |
| --navy: #0d1b2a; |
| --navy-mid: #1a2e45; |
| --blue: #1e5fa8; |
| --blue-light: #2d7dd2; |
| --accent: #e8a020; |
| --text: #1a1a2e; |
| --text-muted: #5a6a7a; |
| --border: #e2e8f0; |
| --bg: #f8fafc; |
| --white: #ffffff; |
| } |
| |
| body { |
| font-family: 'DM Sans', sans-serif; |
| background: var(--bg); |
| color: var(--text); |
| line-height: 1.6; |
| } |
| |
| |
| .header { |
| background: var(--navy); |
| color: white; |
| padding: 3rem 2rem 2.5rem; |
| } |
| |
| .header-inner { |
| max-width: 860px; |
| margin: 0 auto; |
| } |
| |
| .org-label { |
| font-size: 0.7rem; |
| font-weight: 600; |
| letter-spacing: 0.15em; |
| text-transform: uppercase; |
| color: var(--accent); |
| margin-bottom: 0.75rem; |
| } |
| |
| .org-name { |
| font-family: 'Instrument Serif', serif; |
| font-size: 2.8rem; |
| font-weight: 400; |
| letter-spacing: -0.02em; |
| line-height: 1.1; |
| margin-bottom: 1rem; |
| } |
| |
| .org-tagline { |
| font-size: 1rem; |
| color: rgba(255,255,255,0.7); |
| max-width: 560px; |
| line-height: 1.6; |
| margin-bottom: 1.5rem; |
| } |
| |
| .header-links { |
| display: flex; |
| gap: 1rem; |
| flex-wrap: wrap; |
| } |
| |
| .header-links a { |
| display: inline-flex; |
| align-items: center; |
| gap: 0.4rem; |
| font-size: 0.82rem; |
| font-weight: 500; |
| color: rgba(255,255,255,0.8); |
| text-decoration: none; |
| padding: 0.4rem 0.9rem; |
| border: 1px solid rgba(255,255,255,0.2); |
| border-radius: 4px; |
| transition: all 0.2s; |
| } |
| |
| .header-links a:hover { |
| background: rgba(255,255,255,0.1); |
| color: white; |
| border-color: rgba(255,255,255,0.4); |
| } |
| |
| |
| .main { |
| max-width: 860px; |
| margin: 0 auto; |
| padding: 2.5rem 2rem; |
| } |
| |
| |
| .section { |
| margin-bottom: 2.5rem; |
| } |
| |
| .section-title { |
| font-size: 0.7rem; |
| font-weight: 600; |
| letter-spacing: 0.12em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| margin-bottom: 1.25rem; |
| padding-bottom: 0.6rem; |
| border-bottom: 1px solid var(--border); |
| } |
| |
| |
| .about-text { |
| font-size: 0.95rem; |
| color: var(--text); |
| line-height: 1.75; |
| max-width: 680px; |
| } |
| |
| |
| .research-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); |
| gap: 1rem; |
| } |
| |
| .research-card { |
| background: var(--white); |
| border: 1px solid var(--border); |
| border-radius: 6px; |
| padding: 1.25rem; |
| transition: border-color 0.2s, box-shadow 0.2s; |
| } |
| |
| .research-card:hover { |
| border-color: var(--blue-light); |
| box-shadow: 0 2px 12px rgba(30, 95, 168, 0.08); |
| } |
| |
| .research-card-header { |
| display: flex; |
| align-items: flex-start; |
| justify-content: space-between; |
| margin-bottom: 0.6rem; |
| gap: 0.5rem; |
| } |
| |
| .research-name { |
| font-size: 0.92rem; |
| font-weight: 600; |
| color: var(--navy); |
| font-family: 'DM Sans', monospace; |
| } |
| |
| .badge { |
| font-size: 0.62rem; |
| font-weight: 600; |
| letter-spacing: 0.06em; |
| text-transform: uppercase; |
| padding: 0.2rem 0.5rem; |
| border-radius: 3px; |
| white-space: nowrap; |
| flex-shrink: 0; |
| } |
| |
| .badge-published { background: #dcfce7; color: #166534; } |
| .badge-active { background: #dbeafe; color: #1e40af; } |
| .badge-research { background: #fef3c7; color: #92400e; } |
| |
| .research-desc { |
| font-size: 0.82rem; |
| color: var(--text-muted); |
| line-height: 1.55; |
| margin-bottom: 0.75rem; |
| } |
| |
| .research-links { |
| display: flex; |
| gap: 0.5rem; |
| flex-wrap: wrap; |
| } |
| |
| .research-link { |
| font-size: 0.75rem; |
| font-weight: 500; |
| color: var(--blue); |
| text-decoration: none; |
| padding: 0.2rem 0.5rem; |
| background: #eff6ff; |
| border-radius: 3px; |
| transition: background 0.15s; |
| } |
| |
| .research-link:hover { |
| background: #dbeafe; |
| } |
| |
| |
| .stats-row { |
| display: flex; |
| gap: 2rem; |
| flex-wrap: wrap; |
| padding: 1.5rem; |
| background: var(--white); |
| border: 1px solid var(--border); |
| border-radius: 6px; |
| } |
| |
| .stat-item { |
| text-align: left; |
| } |
| |
| .stat-value { |
| font-family: 'Instrument Serif', serif; |
| font-size: 1.8rem; |
| color: var(--navy); |
| line-height: 1; |
| margin-bottom: 0.2rem; |
| } |
| |
| .stat-label { |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| font-weight: 500; |
| } |
| |
| |
| .models-table { |
| width: 100%; |
| border-collapse: collapse; |
| font-size: 0.85rem; |
| } |
| |
| .models-table th { |
| text-align: left; |
| font-size: 0.7rem; |
| font-weight: 600; |
| letter-spacing: 0.08em; |
| text-transform: uppercase; |
| color: var(--text-muted); |
| padding: 0.6rem 0.75rem; |
| border-bottom: 1px solid var(--border); |
| } |
| |
| .models-table td { |
| padding: 0.7rem 0.75rem; |
| border-bottom: 1px solid var(--border); |
| color: var(--text); |
| } |
| |
| .models-table tr:last-child td { |
| border-bottom: none; |
| } |
| |
| .models-table a { |
| color: var(--blue); |
| text-decoration: none; |
| font-weight: 500; |
| font-family: monospace; |
| font-size: 0.82rem; |
| } |
| |
| .models-table a:hover { |
| text-decoration: underline; |
| } |
| |
| |
| .contact-block { |
| background: var(--navy); |
| color: white; |
| border-radius: 6px; |
| padding: 1.5rem; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| flex-wrap: wrap; |
| gap: 1rem; |
| } |
| |
| .contact-text h3 { |
| font-family: 'Instrument Serif', serif; |
| font-size: 1.2rem; |
| font-weight: 400; |
| margin-bottom: 0.3rem; |
| } |
| |
| .contact-text p { |
| font-size: 0.82rem; |
| color: rgba(255,255,255,0.65); |
| } |
| |
| .contact-email { |
| display: inline-flex; |
| align-items: center; |
| gap: 0.4rem; |
| font-size: 0.85rem; |
| font-weight: 500; |
| color: white; |
| text-decoration: none; |
| padding: 0.6rem 1.2rem; |
| background: var(--blue); |
| border-radius: 4px; |
| transition: background 0.2s; |
| } |
| |
| .contact-email:hover { |
| background: var(--blue-light); |
| } |
| |
| |
| .footer { |
| text-align: center; |
| padding: 1.5rem; |
| font-size: 0.75rem; |
| color: var(--text-muted); |
| border-top: 1px solid var(--border); |
| margin-top: 1rem; |
| } |
| |
| @media (max-width: 600px) { |
| .org-name { font-size: 2rem; } |
| .research-grid { grid-template-columns: 1fr; } |
| .stats-row { gap: 1.5rem; } |
| } |
| </style> |
| </head> |
| <body> |
|
|
| |
| <div class="header"> |
| <div class="header-inner"> |
| <div class="org-label">AI Research Studio</div> |
| <h1 class="org-name">AMEFORGE</h1> |
| <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> |
| <div class="header-links"> |
| <a href="https://ameforge.tech" target="_blank">🌐 ameforge.tech</a> |
| <a href="https://arxiv.org/abs/2603.14651" target="_blank">📄 arXiv</a> |
| <a href="https://github.com/Volgat" target="_blank">⌥ GitHub</a> |
| <a href="mailto:contact@ameforge.tech">✉ contact@ameforge.tech</a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="main"> |
|
|
| |
| <div class="section"> |
| <div class="section-title">About</div> |
| <p class="about-text"> |
| 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. |
| </p> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Research Projects</div> |
| <div class="research-grid"> |
|
|
| <div class="research-card"> |
| <div class="research-card-header"> |
| <span class="research-name">EARCP</span> |
| <span class="badge badge-published">Published</span> |
| </div> |
| <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> |
| <div class="research-links"> |
| <a href="https://arxiv.org/abs/2603.14651" target="_blank" class="research-link">arXiv Paper</a> |
| <a href="https://pypi.org/project/earcp/" target="_blank" class="research-link">pip install earcp</a> |
| <a href="https://www.kaggle.com/competitions/hull-tactical-market-prediction/leaderboard" target="_blank" class="research-link">Kaggle</a> |
| </div> |
| </div> |
|
|
| <div class="research-card"> |
| <div class="research-card-header"> |
| <span class="research-name">SCLM</span> |
| <span class="badge badge-active">Active</span> |
| </div> |
| <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> |
| <div class="research-links"> |
| <a href="https://ameforge.tech/research/sclm" target="_blank" class="research-link">Documentation</a> |
| <a href="mailto:contact@ameforge.tech" class="research-link">Commercial License</a> |
| </div> |
| </div> |
|
|
| <div class="research-card"> |
| <div class="research-card-header"> |
| <span class="research-name">SparseMind</span> |
| <span class="badge badge-research">Research</span> |
| </div> |
| <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> |
| <div class="research-links"> |
| <a href="https://ameforge.tech/research/sparse" target="_blank" class="research-link">Learn more</a> |
| </div> |
| </div> |
|
|
| <div class="research-card"> |
| <div class="research-card-header"> |
| <span class="research-name">NexusBPE</span> |
| <span class="badge badge-active">Active</span> |
| </div> |
| <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> |
| <div class="research-links"> |
| <a href="https://huggingface.co/AMFORGE/gearcut_tok" target="_blank" class="research-link">HuggingFace</a> |
| <a href="https://ameforge.tech/research/nexusbpe" target="_blank" class="research-link">Documentation</a> |
| </div> |
| </div> |
|
|
| <div class="research-card"> |
| <div class="research-card-header"> |
| <span class="research-name">MemoryBank</span> |
| <span class="badge badge-research">Research</span> |
| </div> |
| <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> |
| <div class="research-links"> |
| <a href="https://ameforge.tech/research/memorybank" target="_blank" class="research-link">Learn more</a> |
| </div> |
| </div> |
|
|
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Published Models</div> |
| <div style="background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;"> |
| <table class="models-table"> |
| <thead> |
| <tr> |
| <th>Model</th> |
| <th>Task</th> |
| <th>License</th> |
| <th>Status</th> |
| </tr> |
| </thead> |
| <tbody> |
| <tr> |
| <td><a href="https://huggingface.co/AMFORGE/gc_editor1" target="_blank">AMFORGE/gc_editor1</a></td> |
| <td>Text Generation</td> |
| <td>CKL</td> |
| <td><span class="badge badge-active">Active</span></td> |
| </tr> |
| <tr> |
| <td><a href="https://huggingface.co/AMFORGE/gc_editor" target="_blank">AMFORGE/gc_editor</a></td> |
| <td>Text Generation</td> |
| <td>CKL</td> |
| <td><span class="badge badge-active">Active</span></td> |
| </tr> |
| <tr> |
| <td><a href="https://huggingface.co/AMFORGE/gearcut_tok" target="_blank">AMFORGE/gearcut_tok</a></td> |
| <td>Tokenizer (NexusBPE)</td> |
| <td>CKL</td> |
| <td><span class="badge badge-active">Active</span></td> |
| </tr> |
| <tr> |
| <td><a href="https://huggingface.co/AMFORGE/gc_editorablationtest" target="_blank">AMFORGE/gc_editorablationtest</a></td> |
| <td>Ablation Study</td> |
| <td>CKL</td> |
| <td><span class="badge badge-research">Research</span></td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| <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> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Contact</div> |
| <div class="contact-block"> |
| <div class="contact-text"> |
| <h3>Research collaboration & licensing</h3> |
| <p>Interested in our research, commercial licensing, or partnership opportunities?</p> |
| </div> |
| <a href="mailto:contact@ameforge.tech" class="contact-email">✉ contact@ameforge.tech</a> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| <div class="footer"> |
| © 2025 Ameforge. All rights reserved. · <a href="https://ameforge.tech" style="color: inherit;">ameforge.tech</a> |
| </div> |
|
|
| </body> |
| </html> |
|
|