45 minutes · 4 sub-sections: R1-Zero · The R1 Pipeline · The Distillation · Why R1 Is The Reference
The reasoning distillation reference. Proof that reasoning is steering, not teaching.
Deep-Dives
DeepSeek-R1 is the strongest published evidence for the course thesis:
If reasoning were knowledge, none of this would work. It is capability the base already had.
| Input | What it was |
|---|---|
| Base | DeepSeek-V3-Base (671B MoE, 37B active). No instruction tuning. |
| Scaffold | A minimal <think></think> template. No demonstrations. |
| Rewards | Verifiable only: math correctness, code execution, LeetCode verdicts. No reward model. |
If reasoning were KNOWLEDGE
GRPO on a base with no reasoning traces could not produce it.
You would need supervised demonstrations or continued pretraining on reasoning corpora.
If reasoning were STEERING
The base already has the capability (saw it in pretraining). RL redirects probability mass so the reasoning pathways become the chosen behavior.
This is exactly what happened.
Each stage fixes a specific failure of the one before. Stage 3 is the source of the distillation data.
| Stage | Fixes |
|---|---|
| 1. Cold-start SFT | R1-Zero's unreadable chains. Anchors tone, single language, clean <think> structure. |
| 2. Reasoning RL | The cold-start only shaped format; RL fills the shape with reward-driven deliberation. Capability scales. |
| 3. Rejection-sampling SFT | The RL'd model is good but inconsistent. Rejection sampling yields clean traces that reliably reproduce its best behavior. |
| 4. Final RL | Stage 2 optimized only reasoning. Stage 4 aligns the full assistant distribution (helpfulness, format). |
The result that made the field notice:
This is why CoT distillation went from "a technique some labs used" to the default way to build a reasoning model.
DeepSeek explicitly reports: applying RL on top of the distilled students yielded marginal gains.
The interpretation
The teacher's curated traces were already a near-optimal steering signal. They showed the student the high-reward trajectories directly.
The practitioner takeaway
Distill first. Reach for RL on the student only if you have a verifiable-reward domain the traces under-cover — and the compute to spend.
The fact that SFT on traces did transfer reasoning is evidence the small bases already had latent capability. The traces steered them to express it.
The student inherits the behavior, not new ability.
R1 — distillation reference
Teacher pipeline + SFT-only transfer.
Use when: building a reasoner by distilling from a teacher.
Qwen3 — hybrid reference
One model, fused thinking + non-thinking modes, thinking-budget adaptive compute.
Use when: shipping a production model that adapts compute to the question.
Two canonical references. They prove different things. Know both.
Published in Nature (s41586-025-09422-z). Weights open at github.com/deepseek-ai/deepseek-r1.
Next: FTDD-08 — Qwen3 (the hybrid thinking/non-thinking reference)