lyffseba commited on
Commit
993b326
·
verified ·
1 Parent(s): 932a799

xai portal: compare.html

Browse files
Files changed (1) hide show
  1. compare.html +23 -39
compare.html CHANGED
@@ -3,61 +3,45 @@
3
  <head>
4
  <meta charset="utf-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>Compare · xai</title>
7
  <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
- <div class="wrap">
11
 
12
  <h1>Inkling vs Kimi K3</h1>
13
- <p class="meta">cross-model note · primary sources only · not invented parity</p>
14
- <p class="nav">
15
  <a href="index.html">home</a>
16
  <a href="inkling.html">Inkling</a>
17
  <a href="kimi-k3.html">Kimi K3</a>
18
- <a href="compare.html" class="active">compare</a>
19
- <a href="study.html">study path</a>
20
  <a href="sources.html">sources</a>
21
  <a href="msc.html">MSc</a>
22
- </p>
23
 
24
  <hr>
25
 
26
  <table>
27
- <tr><th>Axis</th><th>Inkling</th><th>Kimi K3</th></tr>
28
- <tr><td>Org</td><td>Thinking Machines</td><td>Moonshot (Kimi)</td></tr>
29
- <tr><td>Total</td><td>~975B</td><td>2.8T</td></tr>
30
- <tr><td>Active</td><td>~41B known</td><td>undisclosed</td></tr>
31
- <tr><td>MoE</td><td>6/256 + 2 shared sink</td><td>16/896 Stable LatentMoE</td></tr>
32
- <tr><td>Context</td><td>1M</td><td>1M</td></tr>
33
- <tr><td>Length attn</td><td>Relative PE + SWA/global</td><td>KDA hybrid linear</td></tr>
34
- <tr><td>Depth path</td><td>SConv residual branches</td><td>AttnRes selective retrieve</td></tr>
35
- <tr><td>Multimodal</td><td>image + audio</td><td>vision + video</td></tr>
36
- <tr><td>Thinking</td><td>effort 0–0.99 continuous</td><td>always-on · effort=max</td></tr>
37
- <tr><td>Open code</td><td>day-0 transformers</td><td>weights ETA; KDA→vLLM</td></tr>
38
- <tr><td>Footgun</td><td>app-layer safety</td><td>preserved thinking history</td></tr>
39
  </table>
40
 
41
- <h2>When to study which first</h2>
42
- <table>
43
- <tr><th>Goal</th><th>Prefer</th></tr>
44
- <tr><td>Real open weights + HF modular code</td><td><a href="inkling.html">Inkling</a></td></tr>
45
- <tr><td>1M product API + agent coding now</td><td><a href="kimi-k3.html">Kimi K3</a></td></tr>
46
- <tr><td>Linear / delta attention theory</td><td>Kimi K3 (+ arXiv:2510.26692)</td></tr>
47
- <tr><td>Relative PE + SWA hybrid practice</td><td>Inkling</td></tr>
48
- <tr><td>Audio multimodal</td><td>Inkling</td></tr>
49
- <tr><td>Video product path</td><td>Kimi K3</td></tr>
50
- </table>
51
-
52
- <h2>Open gaps (block fair “who wins”)</h2>
53
- <ul>
54
- <li>K3 active params and full layer table</li>
55
- <li>K3 public numeric bench table (blog is figure-heavy)</li>
56
- <li>Harness-matched agentic coding comparison</li>
57
- <li>Self-host cost at 1M for both</li>
58
- </ul>
59
 
60
- <div class="foot"><a href="index.html">← home</a></div>
61
- </div>
62
  </body>
63
  </html>
 
3
  <head>
4
  <meta charset="utf-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>compare · xai</title>
7
  <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
 
10
 
11
  <h1>Inkling vs Kimi K3</h1>
12
+ <p class="meta">primary sources only · not invented parity</p>
13
+ <nav class="meta">
14
  <a href="index.html">home</a>
15
  <a href="inkling.html">Inkling</a>
16
  <a href="kimi-k3.html">Kimi K3</a>
17
+ <a href="compare.html">compare</a>
18
+ <a href="study.html">study</a>
19
  <a href="sources.html">sources</a>
20
  <a href="msc.html">MSc</a>
21
+ </nav>
22
 
23
  <hr>
24
 
25
  <table>
26
+ <tr><th>axis</th><th>Inkling</th><th>Kimi K3</th></tr>
27
+ <tr><td>total</td><td>~975B</td><td>2.8T</td></tr>
28
+ <tr><td>active</td><td>~41B</td><td>undisclosed</td></tr>
29
+ <tr><td>MoE</td><td>6/256+2 sink</td><td>16/896 LatentMoE</td></tr>
30
+ <tr><td>ctx</td><td>1M</td><td>1M</td></tr>
31
+ <tr><td>length</td><td>relative + SWA/global</td><td>KDA</td></tr>
32
+ <tr><td>depth</td><td>SConv</td><td>AttnRes</td></tr>
33
+ <tr><td>mm</td><td>image+audio</td><td>vision+video</td></tr>
34
+ <tr><td>think</td><td>effort 0–0.99</td><td>always-on · max</td></tr>
35
+ <tr><td>code</td><td>day-0 transformers</td><td>weights ETA</td></tr>
36
+ <tr><td>risk</td><td>app-layer safety</td><td>preserved thinking</td></tr>
 
37
  </table>
38
 
39
+ <p>
40
+ Prefer <a href="inkling.html">Inkling</a> for open weights + HF code.
41
+ Prefer <a href="kimi-k3.html">Kimi K3</a> for live 1M API + KDA theory.
42
+ </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
+ <p class="meta">gaps: K3 active params · layer table · matched agentic benches</p>
45
+ <p class="meta"><a href="index.html">← home</a></p>
46
  </body>
47
  </html>