Weak-to-Strong On-Policy Distillation
Weak-to-Strong On-Policy Distillation (W2S-OPD) enables improving a strong student model by distilling from multiple weaker models, overcoming limitations of traditional on-policy distillation that require a teacher at least as capable as the student. W2S-OPD constructs a proxy teacher in logit space using a contrast pair of smaller, cheaper models (positive and negative), isolating specific capability directions (e.g., RL skills, scale effects, hint-based reasoning) which are added to the stude
Analysis
TL;DR
- Weak-to-Strong On-Policy Distillation (W2S-OPD) enables improving a strong student model by distilling from multiple weaker models, overcoming limitations of traditional on-policy distillation that require a teacher at least as capable as the student.
- W2S-OPD constructs a proxy teacher in logit space using a contrast pair of smaller, cheaper models (positive and negative), isolating specific capability directions (e.g., RL skills, scale effects, hint-based reasoning) which are added to the student's base model.
- The student distills from this proxy teacher via per-token reverse KL minimization on its own rollouts, allowing it to surpass even domain-expert teachers and continue improving when all supervision sources are weaker than itself.
- Different contrast types yield distinct signals: post-RL and hint contrasts emphasize reasoning frameworks, while scale contrasts emphasize solving procedures.
- Evaluated across four math and three code benchmarks, W2S-OPD outperforms standard OPD and demonstrates robustness in frontier scenarios where no larger teacher exists.
Why It Matters
This work addresses a critical bottleneck in large language model scaling: the inability to transfer knowledge beyond the current frontier when no stronger teacher is available. By enabling weak-to-strong learning through clever logit-space contrast construction, W2S-OPD opens new pathways for efficient model improvement without requiring expensive retraining or access to superior models—making it highly relevant for researchers pushing state-of-the-art boundaries and practitioners seeking cost-effective model refinement strategies.
Technical Details
- Proxy Teacher Construction: A proxy teacher is formed by taking the difference between logits of two weak models (positive minus negative), then adding this delta to the student’s base model logits. This creates a teacher that embodies a specific capability direction while remaining distributionally close to the student.
- Contrast Pair Instantiations: Three key contrast pairs are used: (1) post-RL vs pre-RL expert to isolate reinforcement learning-induced skills; (2) larger vs smaller base model to capture scale-related capabilities; (3) small base model with correct vs wrong hints to extract instance-level solution guidance.
- Distillation Objective: The student minimizes per-token reverse Kullback-Leibler divergence between its own rollout distribution and the proxy teacher’s distribution, ensuring alignment without requiring external data or teacher rollouts.
- On-Policy Constraint: All training occurs on the student’s own generated sequences, preserving policy consistency and avoiding distributional shift issues common in off-policy methods.
- Benchmark Evaluation: Tested on four mathematical reasoning datasets and three coding tasks, showing consistent gains over baseline OPD and ability to exceed performance of domain-specific expert teachers.
Industry Insight
W2S-OPD presents a paradigm shift toward self-improving AI systems that can evolve beyond their initial training limits using only weaker internal resources—a crucial capability for autonomous agents operating in dynamic environments where superior models may not exist. Organizations investing in LLM development should prioritize integrating such weak-to-strong mechanisms into their pipelines to reduce dependency on massive compute for incremental gains and enable continuous model evolution even at the technological frontier. Additionally, the modular nature of contrast design suggests potential for domain-specific tuning (e.g., medical, legal) by crafting tailored weak-model pairs that isolate relevant expertise directions.
Disclaimer: The above content is generated by AI and is for reference only.