Abstract
Large language model (LLM) post-training is essential for improving reasoning, adaptation, and alignment. Existing methods mainly follow two paradigms: reinforcement learning (RL) and on-policy distillation (OPD). However, RL relies on coarse-grained outcome supervision, resulting in difficult credit assignment and limited capability to acquire new knowledge. OPD, meanwhile, unconditionally matches teacher logits through KL divergence, which creates a dilemma: similar teachers provide little new knowledge, while substantially different teachers often yield ineffective guidance, largely restricting OPD to within-family distillation. We propose Distilled Reinforcement Learning (Distilled RL), which integrates teacher supervision into the RL objective to provide fine-grained guidance, selectively transfer new knowledge and avoid unconditional imitation. Distilled RL contains three components: reverse importance sampling with clipping, negative sample reset, and sequence-level geometric normalization. Through a concise and interpretable case study, we demonstrate that Distilled RL can effectively transfer previously unavailable knowledge from a teacher model to a student model. Extensive experiments across both within-family and cross-family distillation settings show that Distilled RL substantially outperforms standard RL and OPD in terms of both pass@1 and pass@k. Our code is available at https://github.com/597358816/Distilled-RL.
Community
Distilled Reinforcement Learning for LLM Post-Training
Standard reinforcement learning relies on coarse-grained outcome rewards, while on-policy distillation usually encourages the student to imitate the teacher distribution unconditionally. Distilled RL instead uses the teacher to redistribute the policy-gradient signal at the token level, providing selective and fine-grained guidance while preserving reward-driven optimization.
Overview
Distilled RL consists of three components:
- Reverse importance sampling, which measures the teacher's relative preference for each student-generated token.
- Negative sample reset, which disables teacher reweighting on negative-advantage trajectories.
- Sequence-level geometric normalization, which removes sequence-level scale bias while preserving relative token preferences.
Method
Given a prompt $q$ and a response $o_i$ sampled from the old student policy, the standard policy ratio is
The response-level advantage is estimated using group-normalized rewards:
Reverse Importance Sampling
We measure the teacher's relative preference for each student-generated token using
To prevent extreme teacher–student likelihood ratios, we apply symmetric clipping:
Sequence-Level Geometric Normalization
The clipped ratios are normalized within each response:
The normalized ratios satisfy
This normalization removes the sequence-level mean shift in log importance ratios while preserving the teacher's relative preferences across tokens.
Negative Sample Reset
Teacher guidance is applied only to positive-advantage responses:
For negative-advantage responses, the update reduces to the original RL objective.
Distilled RL Objective
For responses sampled from the old student policy, the final policy optimization objective is
where the clipped policy ratio is
Unlike KL-based on-policy distillation, Distilled RL does not treat the teacher as an unconditional imitation target. Instead, the teacher selectively redistributes the reward-driven policy-gradient signal at the token level.
Main Results
We evaluate Distilled RL on three student models using Qwen3-8B-GRPO as the teacher. The table below reports the average Pass@1 over ten mathematical reasoning benchmarks.
| Student Model | Base | OPD | RL | OPD+RL | Distilled RL |
|---|---|---|---|---|---|
| DeepSeek-R1-Distill-Qwen-1.5B | 31.70 | 35.27 | 36.86 | 36.54 | 40.00 |
| Qwen3-1.7B | 39.86 | 45.21 | 44.76 | 44.89 | 46.37 |
| Qwen3-4B | 46.33 | 55.97 | 57.40 | 56.38 | 58.96 |
Distilled RL consistently improves over standard RL, OPD, and their direct combination across different student scales and teacher–student settings.
Requirements
Software
Clone the repository:
git clone https://github.com/597358816/Distilled-RL.git
cd Distilled-RL
Install the required dependencies:
pip install torch==2.6.0 torchaudio==2.6.0 torchvision==0.21.0 vllm==0.8.3 transformers==4.51.2
pip install ray==2.48.0 tensordict==0.9.1 pydantic==2.11.7
pip install flash-attn
pip install -e .
pip install tensorboard
cd examples
bash XX.sh
This is an automated message from the Librarian Bot. I found the following papers similar to this paper.
The following papers were recommended by the Semantic Scholar API
- Stabilizing On-Policy Distillation for MLLM Reasoning with Global Normalization (2026)
- Self-Distilled Policy Gradient (2026)
- Teaching the Way, Not the Answer: Privileged Tutoring Distillation for Multimodal Policy Optimization (2026)
- Trust Region On-Policy Distillation (2026)
- ATOD: Annealed Turn-aware On-policy Distillation for Multi-turn Autonomous Agents (2026)
- Filter, Then Reweight: Rethinking Optimization Granularity in On-Policy Distillation (2026)
- ROSD: Reflective On-Policy Self-Distillation for Language Model Reasoning across Domains (2026)
Please give a thumbs up to this comment if you found it helpful!
If you want recommendations for any Paper on Hugging Face checkout this Space
You can directly ask Librarian Bot for paper recommendations by tagging it in a comment: @librarian-bot recommend
Get this paper in your agent:
hf papers read 2607.17247 Don't have the latest CLI?
curl -LsSf https://hf.co/cli/install.sh | bash Models citing this paper 0
No model linking this paper
Datasets citing this paper 0
No dataset linking this paper
Spaces citing this paper 0
No Space linking this paper
