Skip to content

Commit 127f53d

Browse files
committed
feat: batch 1 — add 6 new ML/LLM interview cheat sheets
Categorized into 6 buckets per the existing structure: 🏛️ LLM Architecture & Systems: - Long Context (RoPE / YaRN / NTK / MLA / StreamingLLM) - KV Cache + Speculative Decoding (Medusa / EAGLE / MLA) - Distributed Training (DDP / FSDP2 / ZeRO / TP / PP / SP / CP / EP / DualPipe) 🌊 Generative Models — Theory & Tokenizers: - Diffusion Foundations (DDPM / Score / DDIM / EDM / CFG / Consistency) 🎨 Generation Systems: - Video Generation (Sora / Hunyuan-Video / Wan / Mochi / Movie Gen) 👁️ Multimodal: - VLM (CLIP / LLaVA / Qwen-VL / DeepSeek-VL) Each tutorial: 1200-1600 lines + cross-model codex 5.5 xhigh review (3-5 math rounds + 1-2 render rounds) catching ~10-15 substantive errors per file. Full audit trails in *.review.json. README updates (CN + EN): - 6 rows promoted from 🚧 to clickable HTML+MD links - Footer updated to reflect 7 remaining in-flight (RLHF · Reasoning · MoE · Quantization · VAE/VQ · Image Gen · 3D Gen) - Fix-loop description updated to trajectory-based per SKILL.md change
1 parent 443562f commit 127f53d

20 files changed

Lines changed: 15942 additions & 16 deletions

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,34 +64,34 @@
6464
| Topic | HTML | MD |
6565
|---|---|---|
6666
| MoE (DeepSeek-V3 / Mixtral / Llama 4) | 🚧 ||
67-
| Long Context (RoPE / YaRN / NTK / MLA / StreamingLLM) | 🚧 | |
68-
| KV Cache + Speculative Decoding (Medusa / EAGLE / MLA) | 🚧 | |
67+
| **Long Context (RoPE / YaRN / NTK / MLA / StreamingLLM)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/long_context_rope_yarn_mla_tutorial.html) | [MD](docs/tutorials/long_context_rope_yarn_mla_tutorial.md) |
68+
| **KV Cache + Speculative Decoding (Medusa / EAGLE / MLA)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/kv_cache_speculative_decoding_tutorial.html) | [MD](docs/tutorials/kv_cache_speculative_decoding_tutorial.md) |
6969
| Quantization (GPTQ / AWQ / FP8 / NVFP4 / SmoothQuant) | 🚧 ||
70-
| Distributed Training (DDP / FSDP2 / ZeRO / TP / PP / EP / SP) | 🚧 | |
70+
| **Distributed Training (DDP / FSDP2 / ZeRO / TP / PP / EP / SP)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/distributed_training_tutorial.html) | [MD](docs/tutorials/distributed_training_tutorial.md) |
7171

7272
### 🌊 Generative Models — 理论 & Tokenizers
7373

7474
| Topic | HTML | MD |
7575
|---|---|---|
7676
| **Flow Matching Quick Reference** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/flow_matching_tutorial.html) | [MD](docs/tutorials/flow_matching_tutorial.md) |
77-
| Diffusion Foundations (DDPM / Score / DDIM / EDM / CFG) | 🚧 | |
77+
| **Diffusion Foundations (DDPM / Score / DDIM / EDM / CFG)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/diffusion_foundations_tutorial.html) | [MD](docs/tutorials/diffusion_foundations_tutorial.md) |
7878
| VAE / VQ-VAE / VQ-GAN / FSQ | 🚧 ||
7979

8080
### 🎨 Generation Systems — 图像 / 视频 / 3D
8181

8282
| Topic | HTML | MD |
8383
|---|---|---|
8484
| Image Gen Systems (LDM / SD / SDXL / SD3 / FLUX / ControlNet) | 🚧 ||
85-
| Video Gen (Sora / Hunyuan-Video / Kling / Wan / Movie Gen) | 🚧 | |
85+
| **Video Gen (Sora / Hunyuan-Video / Kling / Wan / Movie Gen)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/video_generation_tutorial.html) | [MD](docs/tutorials/video_generation_tutorial.md) |
8686
| 3D Gen (NeRF / Instant-NGP / 3DGS / SDS / Trellis) | 🚧 ||
8787

8888
### 👁️ Multimodal
8989

9090
| Topic | HTML | MD |
9191
|---|---|---|
92-
| VLM (CLIP / LLaVA / Qwen-VL / DeepSeek-VL) | 🚧 | |
92+
| **VLM (CLIP / LLaVA / Qwen-VL / DeepSeek-VL)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/vlm_multimodal_tutorial.html) | [MD](docs/tutorials/vlm_multimodal_tutorial.md) |
9393

94-
> 🚧 表示正在跑(13 篇 background agent 进行中,跑完会逐个填入)。
94+
> 🚧 表示正在跑(剩 7 篇 background agent 进行中:RLHF · Reasoning · MoE · Quantization · VAE/VQ · Image Gen · 3D Gen,跑完会逐个填入)。
9595
9696
---
9797

@@ -102,7 +102,7 @@
102102
1. **Plan** — 12-14 节(TL;DR · 直觉 · 公式 · 代码 · 变体 · 复杂度 · 25 高频题)
103103
2. **Draft**~600-1000 行中文 + 真能跑的 PyTorch
104104
3. **Cross-model review** — 跨模型 codex GPT-5.5 xhigh 审 10 项(公式正确性 / 代码可运行 / 引用真实 / 表格 pipe 转义 / callout 风格 / 个人信息泄漏…)
105-
4. **Fix 循环 ≤ 3 轮**
105+
4. **Fix 循环**(trajectory-based,FAIL 集在收敛就继续,同一问题反复出现或 ~6 轮没收敛就停)
106106
5. **`/render-html`** 渲染 + 13 项渲染审查(信息保真 / TOC / 公式 / 代码高亮 / 安全 / 隐私…)
107107
6. **`.review.json`** 完整审计 trail
108108

README_EN.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,34 +64,34 @@ Core methodology: **cross-model adversarial review** — executor and reviewer m
6464
| Topic | HTML | MD |
6565
|---|---|---|
6666
| MoE (DeepSeek-V3 / Mixtral / Llama 4) | 🚧 ||
67-
| Long Context (RoPE / YaRN / NTK / MLA / StreamingLLM) | 🚧 | |
68-
| KV Cache + Speculative Decoding (Medusa / EAGLE / MLA) | 🚧 | |
67+
| **Long Context (RoPE / YaRN / NTK / MLA / StreamingLLM)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/long_context_rope_yarn_mla_tutorial.html) | [MD](docs/tutorials/long_context_rope_yarn_mla_tutorial.md) |
68+
| **KV Cache + Speculative Decoding (Medusa / EAGLE / MLA)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/kv_cache_speculative_decoding_tutorial.html) | [MD](docs/tutorials/kv_cache_speculative_decoding_tutorial.md) |
6969
| Quantization (GPTQ / AWQ / FP8 / NVFP4 / SmoothQuant) | 🚧 ||
70-
| Distributed Training (DDP / FSDP2 / ZeRO / TP / PP / EP / SP) | 🚧 | |
70+
| **Distributed Training (DDP / FSDP2 / ZeRO / TP / PP / EP / SP)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/distributed_training_tutorial.html) | [MD](docs/tutorials/distributed_training_tutorial.md) |
7171

7272
### 🌊 Generative Models — Theory & Tokenizers
7373

7474
| Topic | HTML | MD |
7575
|---|---|---|
7676
| **Flow Matching Quick Reference** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/flow_matching_tutorial.html) | [MD](docs/tutorials/flow_matching_tutorial.md) |
77-
| Diffusion Foundations (DDPM / Score / DDIM / EDM / CFG) | 🚧 | |
77+
| **Diffusion Foundations (DDPM / Score / DDIM / EDM / CFG)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/diffusion_foundations_tutorial.html) | [MD](docs/tutorials/diffusion_foundations_tutorial.md) |
7878
| VAE / VQ-VAE / VQ-GAN / FSQ | 🚧 ||
7979

8080
### 🎨 Generation Systems — Image / Video / 3D
8181

8282
| Topic | HTML | MD |
8383
|---|---|---|
8484
| Image Gen Systems (LDM / SD / SDXL / SD3 / FLUX / ControlNet) | 🚧 ||
85-
| Video Gen (Sora / Hunyuan-Video / Kling / Wan / Movie Gen) | 🚧 | |
85+
| **Video Gen (Sora / Hunyuan-Video / Kling / Wan / Movie Gen)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/video_generation_tutorial.html) | [MD](docs/tutorials/video_generation_tutorial.md) |
8686
| 3D Gen (NeRF / Instant-NGP / 3DGS / SDS / Trellis) | 🚧 ||
8787

8888
### 👁️ Multimodal
8989

9090
| Topic | HTML | MD |
9191
|---|---|---|
92-
| VLM (CLIP / LLaVA / Qwen-VL / DeepSeek-VL) | 🚧 | |
92+
| **VLM (CLIP / LLaVA / Qwen-VL / DeepSeek-VL)** | [📄 HTML](https://wanshuiyin.github.io/ARIS-in-AI-Offer/tutorials/vlm_multimodal_tutorial.html) | [MD](docs/tutorials/vlm_multimodal_tutorial.md) |
9393

94-
> 🚧 = in flight. Several background agents are writing these now; rows fill in as they finish.
94+
> 🚧 = in flight (7 background agents still running: RLHF · Reasoning · MoE · Quantization · VAE/VQ · Image Gen · 3D Gen). Rows fill in as they finish.
9595
9696
---
9797

@@ -102,7 +102,7 @@ Every tutorial uses ARIS's `/interview-cheatsheet` skill:
102102
1. **Plan** — 12-14 sections (TL;DR · Intuition · Formulas · Code · Variants · Complexity · 25 Q&A)
103103
2. **Draft** — 600-1000 lines of Chinese tutorial + runnable from-scratch PyTorch
104104
3. **Cross-model review** — fresh-thread codex GPT-5.5 xhigh audit on 10 properties (formula correctness · code runnability · citation accuracy · table-pipe escapes · callout style · personal-info leak · ...)
105-
4. **Fix loop ≤ 3 rounds**
105+
4. **Fix loop** — trajectory-based; keep going if FAIL set is shrinking, stop if same issue recurs or ~6 rounds without convergence
106106
5. **`/render-html`** — single-file HTML render + 13-property render audit (information fidelity · TOC · math · code highlight · safety · privacy · ...)
107107
6. **`.review.json`** — full audit trail saved next to each tutorial
108108

0 commit comments

Comments
 (0)