Overview
Research field: Machine Learning Authors: Yunhe Li, Hao Shi, Wenhao Liu, Mengzhe Ruan, Hanxu Hou, Zhongxiang Dai, Shuang Qiu, Linqi Song Published: 2026-07-02 arXiv: 2607.02502 Categories: cs.LG, cs.AI
Problem
On-policy self-distillation (OPSD) has become a practical method for training LLMs to reason, with a single model acting as both teacher and student at different levels of information access. However, the teacher's dense token-level supervision, conditioned on privileged information, can:
- Cause overfitting to in-domain patterns
- Suppress exploration
- Hurt cross-domain generalization
- Introduce privileged information leakage: the student encodes answer-dependent shortcuts that are unavailable at test time
- Outperforms GRPO and SDPO
- Maintains higher training entropy
- Generalizes robustly on the out-of-distribution GPQA benchmark
DemoPSD Approach
DemoPSD resolves these problems through selective adoption of teacher guidance. Instead of fitting the full teacher distribution, the student is guided toward a reverse-KL barycenter target—a weighted geometric combination of the teacher and student distributions—naturally balancing learning from the teacher with preserving the student's own reasoning. The disagreement between the two distributions is measured and used to adaptively control the mixing weight at each token position.
Theoretical Guarantees
The paper proves that DemoPSD achieves:
1. Leakage attenuation: effectively mitigating privileged information leakage 2. Exploration preservation: maintaining exploration under dense token-level distillation
Experiments
Extensive experiments on SciKnowEval spanning four scientific domains show DemoPSD:
Original Abstract (excerpt)
> On-policy self-distillation (OPSD) has emerged as a practical method for training large language models (LLMs) to reason, where a single model acts as both the teacher and the student with different levels of information access. However, recent studies have found that the teacher's dense token-level supervision, conditioned on privileged information, can lead to overfitting to in-domain patterns, suppress exploration, and hurt cross-domain generalization... We introduce DemoPSD, a novel framework that resolves such problems through the idea of *selective adoption of teacher guidance*.
Paper: https://arxiv.org/abs/2607.02502