lyffseba commited on
Commit
6833a50
·
verified ·
1 Parent(s): bbcc069

xai-studies 20260717T161813Z

Browse files
Files changed (3) hide show
  1. GITHUB_README.md +3 -1
  2. catalog/SYNC.txt +1 -0
  3. studies/STUDY.md +29 -31
GITHUB_README.md CHANGED
@@ -31,7 +31,9 @@ make test
31
  python3 studies/run.py test
32
  ```
33
 
34
- Expect `✓ test passed`. Then open [START_HERE.md](START_HERE.md).
 
 
35
 
36
  ## layout
37
 
 
31
  python3 studies/run.py test
32
  ```
33
 
34
+ Expect `✓ test passed`. Then [START_HERE.md](START_HERE.md).
35
+
36
+ **Mirrors** (after `make sync`): GitHub · [Space](https://huggingface.co/spaces/lyffseba/xai) · [raw index](https://huggingface.co/spaces/lyffseba/xai/raw/main/index.html) (no CDN lag) · [dataset](https://huggingface.co/datasets/lyffseba/xai-studies).
37
 
38
  ## layout
39
 
catalog/SYNC.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ xai-sync 20260717T161813Z
studies/STUDY.md CHANGED
@@ -1,55 +1,53 @@
1
- # How to study this monorepo
2
 
3
- **Offline:** open `../index.html` or read markdown under this tree. No network required.
4
- `make test` / `make check` use Python stdlib only. See [../OFFLINE.md](../OFFLINE.md).
5
 
6
- Order is intentional: shared context one model deep → the other → compare.
7
 
8
- ## 1. Map the yard (20 min)
9
 
10
  1. [README.md](README.md)
11
  2. [derived/DASHBOARD.md](derived/DASHBOARD.md)
12
  3. [shared/GLOSSARY.md](shared/GLOSSARY.md)
13
- 4. [shared/comparisons/inkling-vs-kimi-k3.md](shared/comparisons/inkling-vs-kimi-k3.md) — skim only
14
 
15
- ## 2. Inkling deep (half day)
16
 
17
- Weights + code exist best for **implementation truth**.
18
 
19
  1. [models/inkling/README.md](models/inkling/README.md)
20
- 2. [models/inkling/book/00-map.md](models/inkling/book/00-map.md)
21
- 3. [models/inkling/derived/SPEC.md](models/inkling/derived/SPEC.md) + [layer_schedule.md](models/inkling/derived/layer_schedule.md)
22
- 4. [models/inkling/book/01-architecture.md](models/inkling/book/01-architecture.md)
23
- 5. [models/inkling/code-study/01-modular-walkthrough.md](models/inkling/code-study/01-modular-walkthrough.md) with `reference/transformers-inkling/modular_inkling.py` open
24
- 6. Multimodal + chat: code-study 02–03
25
- 7. Training / benches / serve: book 02–04
26
 
27
- ## 3. Kimi K3 deep (half day)
28
 
29
- API live, weights pending → best for **product + KDA theory**.
30
 
31
  1. [models/kimi-k3/README.md](models/kimi-k3/README.md)
32
- 2. [models/kimi-k3/book/00-map.md](models/kimi-k3/book/00-map.md)
33
- 3. [models/kimi-k3/derived/SPEC.md](models/kimi-k3/derived/SPEC.md) + [lineage.md](models/kimi-k3/derived/lineage.md)
34
- 4. [models/kimi-k3/book/01-architecture.md](models/kimi-k3/book/01-architecture.md)
35
- 5. [models/kimi-k3/code-study/02-kda-background.md](models/kimi-k3/code-study/02-kda-background.md) + arXiv:2510.26692
36
- 6. API protocol: [code-study/01-api-protocol.md](models/kimi-k3/code-study/01-api-protocol.md)
37
- 7. Capabilities + limitations: book 03–04
38
- 8. Open questions: [derived/open_questions.md](models/kimi-k3/derived/open_questions.md)
39
 
40
- ## 4. Compare again (30 min)
41
 
42
- Re-read [inkling-vs-kimi-k3.md](shared/comparisons/inkling-vs-kimi-k3.md) and fill:
43
 
44
- - Which long-context bet do you trust more (relative+SWA vs KDA)?
45
- - Which MoE story is clearer for production (41B active known vs 16/896 without active FLOPs)?
46
- - What would you fine-tune first, and on which base?
47
 
48
- ## 5. After K3 weights drop
49
 
50
- ```bash
51
  make refresh MODEL=kimi-k3
52
  make check
53
  ```
54
 
55
- Then extend `models/kimi-k3/code-study/` with a real implementation walkthrough (mirror Inkling).
 
1
+ # How to study
2
 
3
+ **Offline.** Open `../index.html` or read this tree. No network.
4
+ `make test` uses stdlib only. **xai** = explainable AI.
5
 
6
+ Order: mapInkling deep → Kimi K3 deep → compare.
7
 
8
+ ## 1. Map (20 min)
9
 
10
  1. [README.md](README.md)
11
  2. [derived/DASHBOARD.md](derived/DASHBOARD.md)
12
  3. [shared/GLOSSARY.md](shared/GLOSSARY.md)
13
+ 4. [compare](shared/comparisons/inkling-vs-kimi-k3.md) — skim
14
 
15
+ ## 2. Inkling (half day)
16
 
17
+ Weights + code → implementation truth.
18
 
19
  1. [models/inkling/README.md](models/inkling/README.md)
20
+ 2. [book/00-map.md](models/inkling/book/00-map.md)
21
+ 3. [derived/SPEC.md](models/inkling/derived/SPEC.md) + [layer_schedule.md](models/inkling/derived/layer_schedule.md)
22
+ 4. [book/01-architecture.md](models/inkling/book/01-architecture.md)
23
+ 5. [code-study/01-modular-walkthrough.md](models/inkling/code-study/01-modular-walkthrough.md) + `reference/transformers-inkling/modular_inkling.py`
24
+ 6. code-study 02–03 · book 02–04
 
25
 
26
+ ## 3. Kimi K3 (half day)
27
 
28
+ API live, weights pending → product + KDA theory.
29
 
30
  1. [models/kimi-k3/README.md](models/kimi-k3/README.md)
31
+ 2. [book/00-map.md](models/kimi-k3/book/00-map.md)
32
+ 3. [derived/SPEC.md](models/kimi-k3/derived/SPEC.md) + [lineage.md](models/kimi-k3/derived/lineage.md)
33
+ 4. [book/01-architecture.md](models/kimi-k3/book/01-architecture.md)
34
+ 5. [code-study/02-kda-background.md](models/kimi-k3/code-study/02-kda-background.md) + arXiv:2510.26692
35
+ 6. [code-study/01-api-protocol.md](models/kimi-k3/code-study/01-api-protocol.md)
36
+ 7. book 03–04 · [open_questions.md](models/kimi-k3/derived/open_questions.md)
 
37
 
38
+ ## 4. Compare (30 min)
39
 
40
+ Re-read [compare](shared/comparisons/inkling-vs-kimi-k3.md):
41
 
42
+ - Which long-context bet (relative+SWA vs KDA)?
43
+ - Which MoE story for production (41B known vs 16/896 without active FLOPs)?
44
+ - What would you fine-tune first, on which base?
45
 
46
+ ## 5. After K3 weights
47
 
48
+ ```
49
  make refresh MODEL=kimi-k3
50
  make check
51
  ```
52
 
53
+ Then add a real code walkthrough under `models/kimi-k3/code-study/` (mirror Inkling).