Rethinking On-Policy Distillation: Why Your Stronger Teacher Might Be Failing Your Student

Rethinking On-Policy Distillation of Large Language Models: Phenomenology, Mechanism, and Recipe

2026-01-01
Yaxuan Li, Yuxin Zuo, Bingxiang He, Jinqian Zhang, Chaojun Xiao, Cheng Qian, Tianyu Yu, Huan-ang Gao, Wenkai Yang, Zhiyuan Liu, Ning Ding
Summary
Problem
Method
Results
Takeaways
Abstract

The paper investigates the training dynamics of On-Policy Distillation (OPD) for Large Language Models, identifying why stronger teachers sometimes fail to improve students. It introduces a systematic diagnostic framework and demonstrates that OPD success depends on "thinking-pattern consistency" and "new knowledge," achieving SOTA-level reasoning improvements when these conditions are met.

TL;DR

On-Policy Distillation (OPD) is the "dense reward" secret sauce behind recent reasoning models like Qwen3 and GLM-5. However, it is notoriously fragile. This paper reveals that OPD success isn't about the teacher's benchmark score—it's about thinking-pattern consistency and new knowledge. By analyzing token-level dynamics, the authors show that OPD works by aligning a tiny slice of high-probability tokens and offer a "recipe" to fix failing distillation runs.

The "Strong Teacher" Paradox

In traditional Supervised Fine-Tuning (SFT), we assume a smarter teacher always produces a better student. In OPD—where the student generates its own answers and the teacher provides per-token feedback—this rule breaks. The authors found cases where a 7B teacher failed to improve a 1.5B student, while a weaker teacher from the same family succeeded.

Why? The research points to two critical conditions:

  1. Thinking-Pattern Consistency: If the teacher and student don't "think" alike (measured by top-k token overlap), the distillation signal becomes noise.
  2. Genuinely New Knowledge: If the teacher and student were trained on the same data, the teacher might have higher scores but no "new" insights to give.

Thinking Pattern vs Accuracy

Methodology: Looking Under the Hood

The authors investigated the token-level mechanism of successful versus failing runs.

1. Progressive Alignment

Successful OPD is characterized by a "virtuous cycle." As training progresses, the student's top-k tokens begin to match the teacher's. Interestingly, these "overlap tokens" account for 97%–99% of the probability mass.

2. Overlap Sufficiency

Through a brilliant ablation study, the authors proved that you don't need the full vocabulary log-probs. Optimizing only the shared tokens matches the performance of standard OPD. Non-overlap tokens—where the models disagree fundamentally—actually contribute very little to the gradient.

Ablation on Support Set

The Recovery Recipe: How to Fix Failing OPD

If your distillation is stagnating, the paper suggests two practical fixes:

  • Off-policy Cold Start: Run a quick SFT phase on teacher-generated data before starting OPD. This "warms up" the student to the teacher's thinking style.
  • Teacher-Aligned Prompts: Use the exact prompt templates and data distributions the teacher was trained on. This sharpens the signal.

SFT Cold Start Effect

A Warning on Long-Horizon Reasoning

Perhaps the most sobering finding is that reward quality degrades with trajectory depth. As the student generates longer and longer reasoning chains (Chain-of-Thought), it drifts into "unfamiliar territory" for the teacher. By the time the response hits 10k+ tokens, the teacher's feedback often becomes noisy or destabilizing. This suggests current OPD methods have a "horizon ceiling" for complex, multi-step agentic tasks.

Critical Analysis & Conclusion

This paper shifts the OPD narrative from "dense rewards are better" to "aligned rewards are mandatory."

  • Takeaway: When picking a teacher, prioritize architectural and family lineage over raw benchmark leaderboards.
  • Limitations: The study focuses heavily on math reasoning. Whether these dynamics hold for creative writing or coding remains to be seen.
  • Future Work: The "reward degradation" at long horizons points to a need for hybrid rewards—token-level for short-term logic and outcome-level (RLè¡¡) for global correctness.

In the quest for smaller, faster reasoning models, OPD remains our best tool—provided we respect the delicate geometry of the reward landscape.

Find Similar Papers

Try Our Examples

  • Search for recent papers that investigate the "thinking pattern" or reasoning distribution alignment between student and teacher models in LLM distillation.
  • Which paper first formally introduced "On-Policy Distillation" (OPD) for LLMs, and how does the current work's mechanism analysis differ from that original theory?
  • Explore whether the "off-policy cold start" strategy or teacher-aligned templates have been applied to multi-modal distillation or non-mathematical reasoning tasks.
Contents
Rethinking On-Policy Distillation: Why Your Stronger Teacher Might Be Failing Your Student
1. TL;DR
2. The "Strong Teacher" Paradox
3. Methodology: Looking Under the Hood
3.1. 1. Progressive Alignment
3.2. 2. Overlap Sufficiency
4. The Recovery Recipe: How to Fix Failing OPD
5. A Warning on Long-Horizon Reasoning
6. Critical Analysis & Conclusion