Purified OPSD: On-Policy Self-Distillation Without Losing How to Think
Summary
Purified OPSD addresses the limitations of on-policy self-distillation (OPSD) in improving large language model (LLM) reasoning, particularly for long chain-of-thought (long-CoT) models. Standard OPSD often yields only marginal gains and destabilizes reflective reasoning. Researchers identified the root cause as the teacher's supervision being dominated by a reference-induced component, which promotes rote memorization of reference-specific shortcuts, while neglecting the question-conditioned, inference-transferable component. Purified OPSD proposes a two-step solution: first, it constructs a reference-only teacher to isolate the non-transferable supervision component, and then subtracts it to capture the inference-transferable correction. Second, it uses pointwise mutual information (PMI) to transform this residual into a target distribution, effectively filtering out reference-induced shortcuts. Experiments on four long-CoT models across two datasets demonstrated consistent improvements over both base models and standard OPSD, while preserving the models' natural epistemic behavior.
Key takeaway
For Machine Learning Engineers developing long chain-of-thought (long-CoT) reasoning models, Purified OPSD offers a robust solution to enhance performance. Your current on-policy self-distillation (OPSD) approaches might be introducing rote memorization, destabilizing reflective reasoning. By implementing Purified OPSD's two-step method—isolating non-transferable supervision and applying pointwise mutual information (PMI) for distillation—you can achieve consistent improvements across datasets while preserving your models' natural epistemic behavior. Consider integrating this technique to overcome OPSD's limitations in complex reasoning tasks.
Key insights
Purified OPSD improves LLM long-CoT reasoning by filtering out rote memorization from teacher supervision using PMI.
Principles
- Teacher supervision can induce rote memorization.
- Isolate non-transferable supervision components.
- PMI can filter out reference-induced shortcuts.
Method
Construct a reference-only teacher to isolate non-transferable supervision. Subtract this component to get the transferable correction. Transform the residual into a PMI target distribution for student distillation.
In practice
- Apply Purified OPSD to long-CoT LLMs.
- Improve reasoning without destabilizing models.
- Enhance LLM performance on complex tasks.
Topics
- On-Policy Self-Distillation
- Large Language Models
- Chain-of-Thought Reasoning
- Pointwise Mutual Information
- LLM Reasoning
- Model Distillation
Best for: AI Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.