Distillation in 2026: Why the Best Teachers Are No Longer Bigger Models
The old rule was simple: bigger teacher, better student. In 2026, that rule is broken.
The Old Distillation Playbook Is Obsolete
For years, knowledge distillation followed a predictable script: train a massive teacher model, then compress its knowledge into a smaller, faster student. BERT distilled into DistilBERT. GPT-4 into smaller variants. The teacher was always bigger, smarter, and more expensive.
That world ended in 2025.
Today’s frontier labs — DeepSeek, Z.ai (GLM), NVIDIA, Qwen, and even Cursor — aren’t using bigger teachers. They’re using specialized checkpoints of the same base model, each pushed to its limit in one domain through reinforcement learning, then merged into a single student that generates its own training data.
The result: students that exceed their teachers in aggregate performance, without ever seeing a larger model.
Three Distillation Patterns Now Dominate the Frontier
1. Off-Policy Distillation (The Classic, Still Used)
Traditional compression: a frozen teacher generates targets, a smaller student learns to match them. Still useful for deployment optimization, but no longer how frontier capabilities are created.
2. On-Policy Multi-Teacher Distillation (The 2026 Standard)
This is how DeepSeek-V4, GLM-5, Nemotron 3 Ultra, and Qwen3 are built:
- Start with one base model (e.g., 70B parameters)
- Create N specialized checkpoints via domain-specific RL:
- Checkpoint A: pushed hard on coding (RL on code tasks)
- Checkpoint B: pushed hard on mathematical reasoning
- Checkpoint C: pushed hard on multilingual tasks
- Checkpoint D: pushed hard on long-context retrieval
- Merge them into one student — but here’s the twist: the student generates its own rollouts during training, and the teachers provide feedback on those rollouts.
The student isn’t mimicking static teacher outputs. It’s exploring, and the teachers are critiquing its exploration in their specialty domains.
3. Self-Distillation (The Recursive Loop)
Cursor’s Composer 2.5 and Thinking Machines Lab use a different trick:
- Take a base model → inject hints/privileged context → create a ““teacher version”” of the same model
- Train the un-hinted version to match the hinted version’s outputs
- The model effectively teaches itself to internalize reasoning patterns it could only access with extra context
Thinking Machines takes this further: they distill from a pre-fine-tune checkpoint into the post-fine-tune model, preserving old capabilities while acquiring new ones. Continual learning via self-distillation.
Why This Works: Teachers Are No Longer Bigger
The key insight from 2026: specialization beats scale for teaching.
A 70B model that’s undergone 10,000 RL steps on coding is a better coding teacher than a 400B generalist model. The specialized checkpoint has:
- Sharper reward gradients in its domain
- More consistent reasoning chains
- Fewer ““hedging”” behaviors (less ““I think maybe…”” more ““the answer is X because Y””)
When you merge four such specialists, the student gets four crisp, high-signal teachers instead of one massive, fuzzy generalist.
And because the student generates its own rollouts, it learns to navigate between domains — switching from coding mode to math mode to language mode fluidly — something no single specialist teacher demonstrates.
What This Means for You (If You Build on These Models)
1. Benchmark Numbers Are Misleading
A model trained via multi-teacher on-policy distillation will underperform its teachers on their specialty benchmarks but outperform all of them on mixed, real-world tasks. Single-domain evals miss the point.
2. ““Distilled”” No Longer Means ““Smaller/Weaker””
Nemotron 3 Ultra and DeepSeek-V4 are not compressed models. They’re synthesized models — the product of merging expert teachers via on-policy distillation. They’re often the same size as their teachers.
3. You Can Apply This Pattern Yourself
If you’re fine-tuning models for specific domains:
- Don’t just distill from a bigger model.
- Create 3-4 LoRA adapters, each trained on one sub-domain (SQL, Python, debugging, docs)
- Merge them via on-policy distillation: have the base model generate, let each LoRA critique, update the base
- Result: a single adapter that handles all sub-domains without catastrophic forgetting
4. Self-Distillation Is the Cheapest Way to Improve Reasoning
If you have a model that reasons well with chain-of-thought prompting but poorly without:
- Generate CoT trajectories with the model (teacher mode)
- Train the same model to predict the final answer without seeing the CoT (student mode)
- Repeat for 2-3 iterations
- Cost: ~3x inference. No larger model needed.
The New Mental Model: Distillation as Synthesis
Stop thinking of distillation as compression. Start thinking of it as synthesis.
| Old Mental Model | 2026 Reality |
|---|---|
| Big teacher → Small student | Specialized teachers → Unified student |
| Teacher is fixed, student learns | Student generates, teachers critique |
| Goal: match teacher outputs | Goal: exceed teachers on aggregate |
| One teacher, one domain | Multiple teachers, cross-domain fluency |
| Distillation = deployment optimization | Distillation = capability creation |
What to Do Now
If you’re evaluating models: Look for ““multi-teacher on-policy distillation”” or ““self-distillation”” in the training details. Those models generalize better than their benchmarks suggest.
If you’re fine-tuning: Try the multi-LoRA merge + on-policy distillation pattern. It’s cheaper than training a bigger model and often more effective.
If you’re building products: Don’t assume ““distilled”” means ““dumbed down.”” The best 2026 models are distilled models — just not the way you learned in 2022.
If you’re tracking the frontier: Watch for the first labs to combine all three patterns — multi-teacher on-policy distillation with self-distillation loops for continual learning. That’s the 2027 architecture.
The Bottom Line
The teacher-student relationship has inverted. The student now generates the curriculum, and the teachers grade the homework. The student graduates not by copying, but by synthesizing.
Distillation isn’t how you make models smaller anymore. It’s how you make them better.
Source: Analysis of DeepSeek-V4, GLM-5, Nemotron 3 Ultra, Qwen3, Cursor Composer 2.5, and Thinking Machines Lab technical reports. Original research synthesis by PromptAura.


