ResearchPod Summary
On-Policy Distillation (OPD) is a popular method for improving reinforcement learning in large language models by using a teacher model to provide dense, token-level supervision. However, standard OPD treats all tokens in a generated sequence as equally important. This paper investigates whether this uniform weighting is optimal, given that student-generated rollouts often drift away from the teacher's distribution as the sequence length increases.
The authors identify a "position bias" in OPD, where early tokens in a student's response are significantly more valuable for learning than later ones. They formalize this as a constrained optimization problem, where the student's policy is updated within a local trust region. By solving this, they derive an optimal policy that reweights tokens based on the likelihood ratio between the teacher and the student. To implement this, they introduce Importance-Weighted On-Policy Distillation (IW-OPD), which uses a normalized, accumulated discrepancy between teacher and student probabilities to dynamically downweight later tokens in a sequence.
This work provides a principled explanation for why dense supervision in RL can be inefficient. By demonstrating that not all tokens contribute equally to learning, the authors offer a simple, drop-in modification to existing distillation pipelines that improves sample efficiency and final model performance without requiring additional teacher evaluations.
AI-generated third-party summary by ResearchPod. Not official content or an endorsement by the paper authors or affiliated organizations.