Does on-policy distillation need a teacher at all?
On-policy distillation produces gains in language model reasoning, but how much comes from teacher supervision versus simpler mechanisms like suppressing low-probability tokens? Understanding this helps clarify what distillation actually optimizes.
The paper asks whether on-policy distillation (OPD) distills at all, and its answer is that the teacher may contribute less than the name implies. The authors report "substantial noise" in the teacher's supervision of student-generated trajectories, with prevalence that "increases with teacher scale." Yet the student is "insensitive to such noise," converging to comparable performance whether noisy supervision is kept or removed. Looking at what drives the gains, they find that "learning concentrates on low log-probability tokens" and that "using a single fixed negative advantage matches the performance of teacher-provided ones." The abstract's conclusion is that OPD "works largely by suppressing low log-probability tokens, which requires no teacher." The discussion states this more carefully: "much of OPD's improvement" can be reproduced without teacher supervision.
The mechanism the paper offers is a change of what the dense signal is doing. The teacher scores trajectories that are "inherently off-policy for it," so its token-level advantages are unreliable. The gain appears to come from pushing probability away from tail tokens, and a constant penalty on low-probability tokens does that as well as a teacher does. The proposed method, On-Policy Self-Adaptation (OPSA), scales the negative advantage by token-level entropy. It gives stronger signals at high-entropy positions, suppresses tail tokens, and "evenly" redistributes the freed mass among head tokens. The discussion reports that this sharpens the distribution where the model is already confident while preserving exploration "at high-entropy reasoning forks," and yields longer, more reflective trajectories.
This sits awkwardly against two neighbors. Does on-policy distillation actually expand student capability? also says teacher scale is not what matters, but it locates success in the fidelity of the guiding signal. This paper goes one step further: if a constant negative advantage does as well, the teacher's per-token fidelity is not what separates the runs, at least in the setting studied. The two agree that OPD reshapes sampling rather than adding capability. Can proximity between teacher and student fix distillation instability? repairs the teacher-student gap by constructing a better teacher. The excerpt here suggests a teacher may be dispensable for a large share of the benefit, though the two papers are not compared directly. The entropy-adaptive design also bears on Does policy entropy collapse limit reasoning performance in RL?, because OPSA sharpens low-entropy positions while claiming to keep high-entropy forks open. And Can environment feedback replace scalar rewards in policy learning? is a different route to teacher-free dense signal, one that still relies on environment feedback.
The excerpt does not say which models, teachers, benchmarks or training budgets were used. It gives no effect sizes and does not define how "noise" was measured or removed, and it does not say what OPSA is compared against when it reports "substantial improvements" in Avg@32 and Pass@32. The abstract's "matches" and the discussion's "much of" differ in strength, so the safe reading is that a teacher-free negative advantage recovers most, not necessarily all, of OPD's gain. What follows is a caution about attribution. Where OPD improves a student, part of the credit may belong to a generic tail-suppression effect rather than to knowledge transferred from the teacher, so a claimed teacher contribution needs a fixed-negative-advantage control before it counts.
Inquiring lines that read this note 3
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
What makes distillation transfer some model capabilities while suppressing others? Why do token-level mechanisms matter for learning to reason?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Does on-policy distillation actually expand student capability?
Investigates whether on-policy distillation transfers new abilities from teacher to student, or merely guides exploration within existing limits. Understanding this distinction matters for interpreting what distillation can and cannot achieve.
agrees teacher scale is not decisive but this paper questions whether teacher signal fidelity matters at all beyond tail suppression
-
Can proximity between teacher and student fix distillation instability?
On-policy distillation works well in theory but fails in practice due to capacity gaps. Does dynamically constructing a proximal teacher within a trust region resolve this fragility?
improves the teacher to fix instability; this paper suggests much of the gain needs no teacher
-
Does policy entropy collapse limit reasoning performance in RL?
As reinforcement learning models become more confident in their policy choices, entropy drops and performance plateaus. Can we identify and counteract this bottleneck to sustain scaling?
OPSA's entropy-adaptive advantages sharpen confident positions while preserving exploration at high-entropy forks
-
Can environment feedback replace scalar rewards in policy learning?
Can rich tokenized feedback from environments serve as a direct learning signal for policies, without relying on compressed scalar rewards? This matters because scalar rewards discard information needed for credit assignment.
another teacher-free dense signal, but one that depends on environment feedback
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Trust Region Policy Distillation
- Does On-Policy Distillation Really Distill? From Noisy Teacher to Self-Improvement
- Demystifying On-Policy Distillation: Roles, Pathologies, and Regulations
- On-Policy Self-Distillation without Any Supervision
- AI4AI at Test-Time: Strong-to-Weak Capability Transfer via Harnesses
- Why Does Self-Distillation (Sometimes) Degrade the Reasoning Capability of LLMs?
- Self-distillation Enables Continual Learning
- On-Policy Distillation of Language Models: Learning from Self-Generated Mistakes
Original note title
on-policy distillation works largely by suppressing low log-probability tokens — a fixed negative advantage matches teacher-provided ones