ImageNet classification with deep convolutional neural networks
Alex Krizhevsky, Ilya Sutskever et al.
0
Citations
0
Influential Citations
—
Venue
2026
Year
On-policy distillation (OPD), which aligns a student with the teacher's token-level distribution on the student's own rollouts, is an effective paradigm for transferring capabilities across LLMs. Prevailing approaches assume a teacher at least as capable as the student: they either distill a larger model into a smaller one, which fails at the frontier where no larger teacher exists, or consolidate multiple domain experts trained from a shared base, which requires costly training at the student's scale. We introduce Weak-to-Strong On-Policy Distillation (W2S-OPD), a simple yet effective OPD framework that improves the strong student by distilling from multiple weak models. W2S-OPD constructs a proxy teacher in logit space from a contrast pair of a positive and a negative model, both smaller than the student and cheap to obtain. Their logit difference isolates the capability direction, which is added to the student's own base model, yielding a proxy teacher that couples this direction while staying distributionally adjacent to the student. The student then distills it by minimizing the per-token reverse KL on its own rollouts. We instantiate the contrast pair as i) a post-RL expert against its pre-RL initialization, isolating the skill RL instills, ii) a larger against a smaller base model, isolating the capability from scale, and iii) a small base model with correct versus wrong hints, isolating the instance-level direction toward the solution. Across four math and three code benchmarks, W2S-OPD outperforms OPD, enables the student to surpass the domain teacher, and keeps improving the student even when every supervision source is weaker. Analysis shows different contrasts yield distinct signals: the post-RL and hint contrasts emphasize reasoning frameworks, while the scale contrast emphasizes the solving procedure. Our code will be available at https://github.com/Yu-Fangxu/W2S-OPD.
On-policy distillation (OPD) has become a key technique for transferring capabilities from teacher to student LLMs, but it traditionally relies on a teacher that is at least as capable as the student. This assumption breaks at the frontier, where no larger model exists, and limits the applicability of distillation to scenarios where a stronger teacher is available. W2S-OPD flips this paradigm by showing that a collection of weaker models can be used to improve a stronger student, effectively turning the weakness of available models into an advantage.
The key insight is to construct a proxy teacher in logit space by combining the student's own logits with the difference between a positive and a negative model. This contrastive approach isolates the capability direction—whether it's the skill from RL, the benefit of scale, or the instance-level direction toward a solution—and adds it to the student's base distribution. This keeps the proxy teacher distributionally close to the student, making the distillation stable and effective. The paper demonstrates that even when every supervision source is weaker than the student, the student can still improve, which is a significant departure from conventional wisdom.
W2S-OPD was evaluated on four math benchmarks and three code benchmarks. It consistently outperforms standard OPD, which typically uses a larger teacher. Notably, the student is able to surpass the domain teacher (the positive model) in several cases, indicating that the contrastive proxy teacher provides a stronger training signal than direct distillation from the teacher itself. The method also shows continued improvement even when all supervision sources are weaker than the student, which is a novel finding. The analysis reveals that different contrast pairs yield distinct signals: the post-RL and hint contrasts emphasize reasoning frameworks, while the scale contrast emphasizes the solving procedure. This suggests that the choice of contrast pair can be tailored to the desired capability.
This work has broad implications for LLM training and deployment. It challenges the assumption that distillation requires a stronger teacher, opening up new possibilities for improving models at the frontier where no larger model exists. It also offers a cost-effective alternative to training multiple domain experts at the student's scale, as the weak models are cheap to obtain. The contrastive approach to constructing a proxy teacher could inspire further research into leveraging weak or even negative examples for distillation. Overall, W2S-OPD provides a practical and scalable method for continuous improvement of LLMs, which is crucial as models approach the limits of current architectures and data.
Alex Krizhevsky, Ilya Sutskever et al.
Ashish Vaswani, Noam Shazeer et al.
Douglas M. Bates, Martin Mächler et al.
Diederik P. Kingma, Jimmy Ba