@BhavinJawade: ๐ข๐ป-๐ฝ๐ผ๐น๐ถ๐ฐ๐ ๐ฑ๐ถ๐๐๐ถ๐น๐น๐ฎ๐๐ถ๐ผ๐ป ๐ถ๐๐ป'๐ ๐ฎ ๐ณ๐ฟ๐ฒ๐ฒ-๐น๐๐ป๐ฐ๐ต On-policy distillation has become a defaultโฆ
Summary
Bhavin Jawade discusses several failure modes of on-policy distillation for training large language models, including early mistakes becoming uncorrectable, stronger teachers being worse, privileged information conditioning failing to transfer, and thinking collapse from dense supervision.
View Cached Full Text
Cached at: 07/22/26, 08:29 AM
On-policy distillation isnโt a free-lunch
On-policy distillation has become a default post-training tool in many open-source frontier model training recipes. Recent releases lean on it heavily: DeepSeek v4, MiMO, and Nemotron-Cascade-2 use MOPD, and GLM 5.x uses on-policy cross-stage self-distillation. It provides RLโs on-policy nature reducing exposure bias, while providing token level supervision like SFT. But OPD and OPSD have their own failure modes. In this post I discuss a few of them:
-
Early mistakes are structurally uncorrectable. When the student samples a rollout and takes an early wrong turn, the per-token KL computed along that frozen rollout cannot pull it back onto a correct path. TRD proves that this failure is built into the objective rather than being a matter of noisy gradients. Even with a perfect teacher, the gradient obtained from token-level KL on the studentโs own rollout agrees with the ideal corrective gradient at exactly one point, the token where the student first diverged, and disagrees everywhere after it. Every later supervision target is therefore anchored to a context that the student should never have entered. Because reweighting or clipping only rescales the magnitude of each tokenโs gradient, and here the terms point in the wrong direction, no per-token adjustment can recover the correct update. TRDโs proposed fix is to distill along a teacher-refined trajectory rather than the raw student rollout, which restores a target the student can actually follow.
-
A stronger teacher can be a worse teacher. On-policy distillation can only teach the student at states the student itself visits, and the usable signal at each of those states lives in the overlap between the studentโs and teacherโs next-token distributions. Rethinking OPD shows that a bigger, higher-scoring teacher can fail to move a student while a weaker one succeeds, because if the teacherโs token distribution places its mass on tokens the student rarely produces, the overlap is small and almost nothing transfers, no matter how capable the teacher is in absolute terms. What actually predicts success is early top-k thinking-pattern overlap. In runs that work, the shared top-k tokens carry 97 to 99% of the probability mass and the overlap ratio climbs steadily during training, whereas a run that starts with low overlap never recovers it. A teacher trained on the same recipe as the student also converges toward the studentโs own distribution, so its higher benchmark score does not correspond to any new knowledge it can transfer. The practical rule is to pick teachers by distributional closeness to the student, not by leaderboard rank.
-
Privileged-information-conditioned OPSD can fail to transfer. In OPSD you distill a teacher that was conditioned on privileged information, such as the gold answer, into a student that will never have it. The Many Faces of OPD shows what goes wrong when that information is instance-specific. The student cannot recover the teacherโs per-instance reasoning, since it never sees the answer, so it instead learns a single answer-free policy that effectively averages the teacherโs behavior across all problems, and that averaged policy is too generic to solve any particular one. The signature is initial gains followed by collapse: rollouts grow long, fill with hedging tokens, and accuracy craters toward zero. The approach works only when the privileged information is a shared rule that applies across all instances, such as a system prompt or an alignment preference, and not when it is a per-problem answer.
-
Thinking collapse: dense supervision suppresses the modelโs own deliberation. A teacher conditioned on the answer has no reason to hesitate, backtrack, or explore, so its per-token targets quietly push down the studentโs deliberation tokens. Diagnosing and Mitigating Thinking Collapse names this phenomenon thinking collapse: over training, the studentโs native reasoning behavior erodes as the exploratory tokens that carry it, words like wait, maybe, and alternatively, become progressively less frequent. The mechanism is local rather than global. The damage concentrates at high-entropy decision forks, the branch points where the student is genuinely uncertain and would normally deliberate. Exactly there, the studentโs top-1 token is often an exploratory marker while the answer-conditioned teacherโs top-1 token is not, so the mismatch produces a strong gradient that suppresses the very tokens that make reasoning work. The result is a model whose native reasoning behavior is measurably suppressed, and downstream reasoning accuracy falls in step with it.
Trajectory-Refined Distillation (TRD) https://arxiv.org/abs/2606.08432 Rethinking On-Policy Distillation of Large Language Models: https://arxiv.org/abs/2604.13016 The Many Faces of On-Policy Distillation: Pitfalls, Mechanisms, and Fixes https://arxiv.org/abs/2605.11182 Diagnosing and Mitigating Thinking Collapse in On-Policy Self-Distillation https://arxiv.org/abs/2607.10805
When Are Teacher Tokens Reliable? Position-Weighted On-Policy Self-Distillation for Reasoning (http://arxiv.org/abs/2605.21606) shows that OPSDโs standard objective weights all tokens equally, treating the privileged teacherโs target as equally reliable at every student-visited prefix. But high teacher entropy is ambiguous, it can signal a non-viable branch or just benign solution diversity.
I think the method in the thinking collapse paper (https://arxiv.org/pdf/2607.10805) to fix this is quite interesting, probably not the cleanest, but the idea is neat. the intuition is not to trust the privileged self teacher everywhere. The collapse only happens at high-entropy decision forks, the spots where the student wants to emit a deliberation token (wait, maybe, alternatively) but the teacher, already knowing the answer, wants to push it down. In the paper they find that these spots are the tokens inside the high-entropy region where the student assigns higher probability to its own sampled token than the teacher does. Only at those tokens, they soft anchor the target back towards the frozen base model (original base student policy) instead of the teacher. Everywhere else, teachers supervision is used without this regularization.
Similar Articles
The Many Faces of On-Policy Distillation: Pitfalls, Mechanisms, and Fixes
This paper presents a comprehensive empirical study on on-policy distillation for large language models, identifying failure mechanisms like distribution mismatch and optimization instability, and proposing fixes such as stop-gradient objectives and RLVR-adapted teachers.
@BhavinJawade: I am surveying papers that discuss and explain the failure modes of on-policy distillation and its variants. Will be shโฆ
BhavinJawade surveys papers on failure modes of on-policy distillation and its variants, listing several recent arxiv papers including 'The Many Faces of On-Policy Distillation' and others.
On-Policy Distillation (5 minute read)
This paper introduces on-policy distillation, which trains a student model on its own trajectories with teacher token-level KL supervision to fix train-inference mismatch, unifying forward-KL, reverse-KL, and JSD losses, with reverse-KL favored for smaller students.
Does On-Policy Distillation Really Distill? From Noisy Teacher to Self-Improvement
The paper analyzes on-policy distillation, revealing it primarily suppresses low-probability tokens rather than relying on teacher guidance, and introduces OPSA, a supervision-free method that significantly enhances reasoning performance.
Demystifying On-Policy Distillation: Roles, Pathologies, and Regulations
This paper systematically studies on-policy distillation in LLM post-training, clarifying its role as an exploration catalyst and identifying pathologies like Student-Teacher Mismatch and Length Exploitation, proposing light-weight signal regulations.