Self-Distilled Reasoner: On-Policy Self-Distillation for Large Language Models
Siyan Zhao, Zhihui Xie, Mengchen Liu, Jing Huang, Guan Pang, Feiyu Chen, Aditya Grover
TL;DR
OPSD addresses the distribution mismatch and data efficiency challenges in LLM reasoning by enabling a single model to teach itself using privileged information about ground-truth reasoning traces. It employs two policy-conditioned variants from the same model and minimizes token-level divergence along on-policy rollouts, avoiding the need for an external teacher. Across mathematical reasoning benchmarks, OPSD delivers strong performance with 4 to 8x token efficiency relative to GRPO and SFT, particularly at 4B–8B scales. The findings indicate that longer reasoning generations and full-vocabulary distillation provide richer supervision, and they point to future benefits from larger models and curriculum-based training.
Abstract
Knowledge distillation improves large language model (LLM) reasoning by compressing the knowledge of a teacher LLM to train smaller LLMs. On-policy distillation advances this approach by having the student sample its own trajectories while a teacher LLM provides dense token-level supervision, addressing the distribution mismatch between training and inference in off-policy distillation methods. However, on-policy distillation typically requires a separate, often larger, teacher LLM and does not explicitly leverage ground-truth solutions available in reasoning datasets. Inspired by the intuition that a sufficiently capable LLM can rationalize external privileged reasoning traces and teach its weaker self (i.e., the version without access to privileged information), we introduce On-Policy Self-Distillation (OPSD), a framework where a single model acts as both teacher and student by conditioning on different contexts. The teacher policy conditions on privileged information (e.g., verified reasoning traces) while the student policy sees only the question; training minimizes the per-token divergence between these distributions over the student's own rollouts. We demonstrate the efficacy of our method on multiple mathematical reasoning benchmarks, achieving 4-8x token efficiency compared to reinforcement learning methods such as GRPO and superior performance over off-policy distillation methods.
