Spaces:
Running on T4
Running on T4
add index.html
Browse files- index.html +151 -0
index.html
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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">
|
| 6 |
+
<title>Aether-7B-5Attn — 100% Open-source Foundation Model: Sovereign AI</title>
|
| 7 |
+
<meta name="description" content="Aether-7B-5Attn is a 100% open-source sovereign foundation model: weights, training-data recipe, code, hyperparameters and full logs, all released under Apache-2.0. A 6.59B heterogeneous-attention MoE built from scratch by VIDRAFT.">
|
| 8 |
+
<meta name="keywords" content="open source LLM, fully open foundation model, sovereign AI, Korean LLM, open weights data code logs, Apache 2.0, heterogeneous attention, Latin square attention, mixture of experts, reproducible LLM, VIDRAFT, Aether">
|
| 9 |
+
<meta name="author" content="VIDRAFT">
|
| 10 |
+
<meta property="og:type" content="website">
|
| 11 |
+
<meta property="og:title" content="Aether-7B-5Attn — 100% Open-source Foundation Model: Sovereign AI">
|
| 12 |
+
<meta property="og:description" content="100% open-source sovereign foundation model — weights, data recipe, code, and full logs under Apache-2.0.">
|
| 13 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 14 |
+
<script type="application/ld+json">
|
| 15 |
+
{
|
| 16 |
+
"@context": "https://schema.org",
|
| 17 |
+
"@type": "SoftwareApplication",
|
| 18 |
+
"name": "Aether-7B-5Attn",
|
| 19 |
+
"applicationCategory": "Large Language Model",
|
| 20 |
+
"operatingSystem": "Any",
|
| 21 |
+
"creator": {"@type": "Organization", "name": "VIDRAFT"},
|
| 22 |
+
"license": "https://www.apache.org/licenses/LICENSE-2.0",
|
| 23 |
+
"description": "A 100% open-source sovereign foundation model: a 6.59B heterogeneous-attention MoE (5 attention mechanisms on a 7x7 Latin square) trained from scratch on 144.2B tokens. Weights, training-data recipe, code, hyperparameters and full logs released under Apache-2.0.",
|
| 24 |
+
"keywords": "open source LLM, sovereign AI, fully open foundation model, Apache-2.0, heterogeneous attention, mixture of experts"
|
| 25 |
+
}
|
| 26 |
+
</script>
|
| 27 |
+
<style>
|
| 28 |
+
:root{--bg:#0B1020;--card:#121a30;--line:#233; --ink:#E7EEFB;--mut:#93A4C4;--acc:#5B8FF9;--good:#5AD8A6;}
|
| 29 |
+
*{box-sizing:border-box}
|
| 30 |
+
body{margin:0;background:radial-gradient(1200px 600px at 70% -10%,#16213f 0,#0B1020 60%);color:var(--ink);
|
| 31 |
+
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans KR",sans-serif;line-height:1.6}
|
| 32 |
+
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}
|
| 33 |
+
header{padding:56px 0 28px}
|
| 34 |
+
.badge{display:inline-block;font-size:12px;letter-spacing:.14em;color:var(--good);border:1px solid #2b6b52;
|
| 35 |
+
border-radius:999px;padding:5px 12px;text-transform:uppercase}
|
| 36 |
+
h1{font-size:clamp(28px,5vw,46px);line-height:1.15;margin:16px 0 10px;font-weight:800}
|
| 37 |
+
h1 .g{background:linear-gradient(90deg,#7FB2FF,#5AD8A6);-webkit-background-clip:text;background-clip:text;color:transparent}
|
| 38 |
+
.sub{color:var(--mut);font-size:18px;max-width:760px}
|
| 39 |
+
.cta{margin:22px 0 4px;display:flex;gap:12px;flex-wrap:wrap}
|
| 40 |
+
.btn{display:inline-block;padding:11px 18px;border-radius:10px;text-decoration:none;font-weight:600}
|
| 41 |
+
.btn.p{background:var(--acc);color:#06122b}
|
| 42 |
+
.btn.o{border:1px solid #2c3c5e;color:var(--ink)}
|
| 43 |
+
.grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;margin:26px 0}
|
| 44 |
+
@media(max-width:860px){.grid{grid-template-columns:1fr}}
|
| 45 |
+
.card{background:var(--card);border:1px solid #1f2b47;border-radius:16px;padding:20px}
|
| 46 |
+
.card h2{margin:2px 0 10px;font-size:19px}
|
| 47 |
+
.demo textarea{width:100%;min-height:110px;background:#0c142a;color:var(--ink);border:1px solid #26324a;
|
| 48 |
+
border-radius:10px;padding:12px;font-size:15px;resize:vertical;font-family:inherit}
|
| 49 |
+
.demo .row{display:flex;gap:10px;align-items:center;margin-top:10px;flex-wrap:wrap}
|
| 50 |
+
.demo button{background:var(--good);color:#06251a;border:0;border-radius:10px;padding:11px 18px;font-weight:700;cursor:pointer}
|
| 51 |
+
.demo button:disabled{opacity:.5;cursor:not-allowed}
|
| 52 |
+
.out{margin-top:12px;background:#0a1226;border:1px solid #23304d;border-radius:10px;padding:14px;white-space:pre-wrap;
|
| 53 |
+
min-height:70px;color:#D8E4FA}
|
| 54 |
+
.muted{color:var(--mut);font-size:13px}
|
| 55 |
+
ul.feat{list-style:none;padding:0;margin:6px 0}
|
| 56 |
+
ul.feat li{padding:7px 0;border-bottom:1px solid #18223c}
|
| 57 |
+
ul.feat li b{color:var(--good)}
|
| 58 |
+
table{width:100%;border-collapse:collapse;font-size:14px;margin-top:6px}
|
| 59 |
+
th,td{text-align:left;padding:8px 10px;border-bottom:1px solid #1a2540}
|
| 60 |
+
th{color:var(--mut);font-weight:600}
|
| 61 |
+
.qa h3{margin:16px 0 4px;font-size:16px;color:#BFE3FF}
|
| 62 |
+
.qa p{margin:0 0 10px;color:var(--mut)}
|
| 63 |
+
footer{color:#6B7C99;font-size:13px;padding:30px 0 50px;border-top:1px solid #17203a;margin-top:20px}
|
| 64 |
+
a{color:#7FB2FF}
|
| 65 |
+
</style>
|
| 66 |
+
</head>
|
| 67 |
+
<body>
|
| 68 |
+
<div class="wrap">
|
| 69 |
+
<header>
|
| 70 |
+
<span class="badge">Apache-2.0 · Fully Open · Sovereign AI</span>
|
| 71 |
+
<h1>Aether-7B-5Attn — <span class="g">100% Open-source</span> Foundation Model</h1>
|
| 72 |
+
<p class="sub">Not "open weights." Genuinely open — weights, training-data recipe, code, every hyperparameter, and the complete logs, all released under Apache-2.0. A 6.59B heterogeneous-attention MoE, built from scratch by <b>VIDRAFT</b>.</p>
|
| 73 |
+
<div class="cta">
|
| 74 |
+
<a class="btn p" href="#try">Try the model</a>
|
| 75 |
+
<a class="btn o" href="https://huggingface.co/FINAL-Bench/Aether-7B-5Attn" target="_blank" rel="noopener">Base model ↗</a>
|
| 76 |
+
<a class="btn o" href="https://huggingface.co/FINAL-Bench/Aether-7B-5Attn-it" target="_blank" rel="noopener">Instruct model ↗</a>
|
| 77 |
+
</div>
|
| 78 |
+
</header>
|
| 79 |
+
|
| 80 |
+
<div class="grid">
|
| 81 |
+
<div class="card demo" id="try">
|
| 82 |
+
<h2>🌏 Try Aether (live)</h2>
|
| 83 |
+
<textarea id="prompt" placeholder="Ask something, or start a sentence for the model to continue...">In one sentence, what does sovereign open-source AI mean?</textarea>
|
| 84 |
+
<div class="row">
|
| 85 |
+
<button id="go">Generate</button>
|
| 86 |
+
<span class="muted" id="stat">Model loads on first request.</span>
|
| 87 |
+
</div>
|
| 88 |
+
<div class="out" id="out">—</div>
|
| 89 |
+
<p class="muted">Inference runs at batch_size=1. Serving a 6.59B model needs GPU hardware; on shared/CPU it may be slow or unavailable.</p>
|
| 90 |
+
</div>
|
| 91 |
+
|
| 92 |
+
<div class="card">
|
| 93 |
+
<h2>Why it matters</h2>
|
| 94 |
+
<ul class="feat">
|
| 95 |
+
<li><b>100% open</b> — weights · data recipe · code · logs</li>
|
| 96 |
+
<li><b>Reproducible</b> — data rebuilds byte-for-byte from public sources</li>
|
| 97 |
+
<li><b>Self-designed</b> — 5 attention mechanisms on a 7×7 Latin square</li>
|
| 98 |
+
<li><b>Sovereign</b> — rebuild your own foundation model from this repo alone</li>
|
| 99 |
+
<li><b>Apache-2.0</b> — commercial use, modification, redistribution</li>
|
| 100 |
+
</ul>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
|
| 104 |
+
<div class="card">
|
| 105 |
+
<h2>What is Aether-7B-5Attn?</h2>
|
| 106 |
+
<p class="muted">A 6.59-billion-parameter Mixture-of-Experts language model (~2.98B active per token) whose 49 layers place <b>five distinct attention mechanisms</b> on a <b>7×7 Latin square</b>, so each mechanism appears exactly once at every depth. Trained from scratch on <b>144.2B tokens</b> (≈37.8% math, 21.6% Korean, 21.6% English, 13.5% code) and released fully open under Apache-2.0.</p>
|
| 107 |
+
<table>
|
| 108 |
+
<tr><th>Total / active params</th><td>6.59B / ~2.98B</td><th>Layers</th><td>49 (7×7 Latin square)</td></tr>
|
| 109 |
+
<tr><th>Experts</th><td>25, top-7 + 1 shared</td><th>Context</th><td>4096</td></tr>
|
| 110 |
+
<tr><th>Tokens</th><td>144.2B</td><th>License</th><td>Apache-2.0</td></tr>
|
| 111 |
+
</table>
|
| 112 |
+
</div>
|
| 113 |
+
|
| 114 |
+
<div class="card qa">
|
| 115 |
+
<h2>Answers</h2>
|
| 116 |
+
<h3>Is Aether open source?</h3>
|
| 117 |
+
<p>Yes — 100% open. Weights + training-data recipe + code + all hyperparameters + complete logs + full architecture source, under Apache-2.0. This is the "fully open" standard, not "open weights only."</p>
|
| 118 |
+
<h3>Who built it?</h3>
|
| 119 |
+
<p>VIDRAFT (주식회사 비드래프트), a Korean AI startup — the only single startup among the world's sovereign fully-open foundation models (alongside OLMo, Soofi, Apertus, LLM-jp, Viking).</p>
|
| 120 |
+
<h3>What is unique about the architecture?</h3>
|
| 121 |
+
<p>It is the only sovereign fully-open model with a self-designed attention layout: five mechanisms (full, differential, sliding, NSA, hybrid) on a 7×7 Latin square — a control that removes depth bias.</p>
|
| 122 |
+
<h3>Can I reproduce the training data?</h3>
|
| 123 |
+
<p>Yes. Every source is a public repository; the released recipe reproduces the training binaries byte-for-byte.</p>
|
| 124 |
+
</div>
|
| 125 |
+
|
| 126 |
+
<footer>
|
| 127 |
+
Built by VIDRAFT (주식회사 비드래프트) · Contact: arxivgpt@gmail.com · License: Apache-2.0<br>
|
| 128 |
+
Keywords: open source LLM · fully open foundation model · sovereign AI · Korean LLM · Apache-2.0 · heterogeneous attention · mixture of experts · reproducible LLM
|
| 129 |
+
</footer>
|
| 130 |
+
</div>
|
| 131 |
+
|
| 132 |
+
<script>
|
| 133 |
+
const out=document.getElementById('out'), btn=document.getElementById('go'), stat=document.getElementById('stat');
|
| 134 |
+
async function gen(){
|
| 135 |
+
const prompt=document.getElementById('prompt').value.trim();
|
| 136 |
+
if(!prompt){return}
|
| 137 |
+
btn.disabled=true; out.textContent='…'; stat.textContent='generating (model may be loading on first call)…';
|
| 138 |
+
try{
|
| 139 |
+
const r=await fetch('/api/generate',{method:'POST',headers:{'Content-Type':'application/json'},
|
| 140 |
+
body:JSON.stringify({prompt:prompt,max_new_tokens:200,temperature:0.7})});
|
| 141 |
+
const j=await r.json();
|
| 142 |
+
if(j.ok){ out.textContent=j.completion||'(empty)';
|
| 143 |
+
stat.textContent=`${j.tokens} tokens · ${j.seconds}s · ${j.tok_per_s||'–'} tok/s · ${j.device}`;
|
| 144 |
+
} else { out.textContent=j.message||'unavailable'; stat.textContent=j.status||''; }
|
| 145 |
+
}catch(e){ out.textContent='Request failed: '+e; stat.textContent=''; }
|
| 146 |
+
btn.disabled=false;
|
| 147 |
+
}
|
| 148 |
+
btn.addEventListener('click',gen);
|
| 149 |
+
</script>
|
| 150 |
+
</body>
|
| 151 |
+
</html>
|