AIAny
Icon for item

Trust Region On-Policy Distillation

Proposes TrOPD, a method that restricts token-level on-policy distillation to regions where teacher supervision is reliable to stabilize training under teacher–student distribution mismatch. Adds outlier handling (clipping, masking, forward-KL) and off-policy guidance; shows consistent gains on math reasoning, code generation and general benchmarks.

Introduction

Most on-policy distillation (OPD) procedures become unstable when the teacher and student distributions diverge: teacher supervision on student-generated tokens can produce misleading gradients and derail optimization. The core insight of TrOPD is simple but consequential — only apply on-policy distillation where the teacher's supervision is judged reliable, and treat the remaining regions with conservative alternatives (outlier handling or off-policy guidance) so training remains well-behaved while preserving useful on-policy signals.

Key Findings
  • Trust-region on-policy learning: by restricting token-level OPD to reliably supervised regions, TrOPD reduces the harmful effects of reverse-KL style estimators under distribution mismatch — so what: it prevents optimization collapse that standard OPD can suffer when student generations stray far from the teacher.
  • Outlier estimation strategies: for unreliable regions the paper evaluates gradient clipping, masking, and forward-KL estimation — so what: these mechanisms limit adverse gradient contributions and keep learning stable without fully discarding student exploration.
  • Off-policy guidance: the student is encouraged to continue generation from teacher prefixes and imitate using forward-KL, which nudges exploration toward reliable regions — so what: this provides a practical bridge between conservative imitation and needed on-policy exploration.
  • Empirical results: across mathematical reasoning, code generation, and general-domain benchmarks, TrOPD consistently outperforms OPD variants such as OPD, EOPD, and REOPOLD, indicating the approach generalizes across task types.
Who it's for & Trade-offs

Great fit if you train or post-train LLMs with teacher-student distillation and face instability from distribution mismatch — e.g., multi-task fine-tuning, agent-style training, or compression where student generations differ from teacher prefixes. Look elsewhere if you cannot estimate teacher reliability at token granularity, or if you require a purely off-policy distillation pipeline; TrOPD adds complexity (reliability estimation + outlier handling) and may need extra computation compared to a straightforward OPD baseline.

Where it fits

TrOPD sits between naive on-policy distillation and purely off-policy imitation: it salvages the benefits of on-policy signal where trustworthy while applying conservative estimators elsewhere. For practitioners, it is most relevant when stability — not just asymptotic performance — is a primary concern during post-training or agent-style distillation.

Information

  • Websitearxiv.org
  • AuthorsXingrun Xing, Haoqing Wang, Boyan Gao, Ziheng Li, Yehui Tang
  • Published date2026/05/31

More Items

Enables RL post-training with million-token prompts under a fixed GPU budget by evaluating shared prompt state without autograd, retaining only minimal model state, and replaying short response branches; instantiated as GRPO and demonstrated on Qwen3.6-27B and GLM-5.2 up to multi-million token execution.

Transfers RL-induced policy shifts from a smaller 'weak' teacher to a stronger target by using the teacher's post-/pre-RL log-ratio as a dense implicit reward applied on the student's on-policy states. Enables reuse of RL supervision without running RL rollouts on the target, improving sample/time efficiency.

Introduces KronQ, a post-training quantization framework that incorporates gradient covariance via a Kronecker‑factored Hessian to guide input/output weight rotations and sensitivity-driven mixed-precision allocation. Demonstrates stable 2-bit weight-only quantization on LLaMA-3-70B (7.93 PPL).