Preprint
Reinforcement Learning

SAF-OPD: Stable Advantage Fusion for On-Policy Distillation

Yifan Ding, Xincheng Wei, Yoshua Y. Li, Ziheng Li, Yuquan Lu, Siyu Zhang, Dongsheng Ma, Rongxiang Weng, Xunliang Cai, Yun Chen
July 31, 2026

0

Citations

0

Influential Citations

Venue

2026

Year

Abstract

Reinforcement learning with verifiable rewards (RLVR) broadcasts a single response-level reward to every token, while on-policy distillation (OPD) scores each token against a stronger teacher for a dense advantage but caps performance at teacher quality and discourages exploration beyond it. Their complementarity makes combining RLVR and OPD promising, but we find that fusing the two advantages with a fixed coefficient triggers entropy collapse from two miscalibrations: a magnitude mismatch, where token-level OPD advantages can spike far beyond the bounded RLVR advantage and erase its signal, and a temporal mismatch, where sustained full-strength OPD keeps pulling the student toward the teacher and limits exploration needed to surpass it. We propose SAF, a Stable Advantage Fusion framework that resolves both issues via a lightweight, four-stage pipeline applied only to the OPD advantage: a sparsify-then-compress mechanism for magnitude control paired with a warm-up-then-anneal mechanism for temporal control, with each stage independently switchable and adding negligible overhead. Instantiating RLVR with GRPO, we evaluate SAF across seven mathematical reasoning and code generation benchmarks with Qwen3-1.7B/4B/8B: SAF avoids entropy collapse and consistently outperforms fixed-coefficient GRPO+OPD fusion, improving the aggregate score by 0.51-2.70% across all six model-domain settings while achieving more stable training.

Analysis

Why This Paper Matters

Reinforcement learning with verifiable rewards (RLVR) has become a standard approach for fine-tuning language models on tasks with objective correctness signals, such as math and code. However, RLVR broadcasts a single response-level reward to all tokens, providing sparse and coarse feedback. On-policy distillation (OPD) offers a complementary dense advantage by scoring each token against a stronger teacher, but it caps performance at teacher quality and discourages exploration. Combining these two signals is intuitively appealing, yet naive fusion with a fixed coefficient leads to entropy collapse, as the authors demonstrate. This paper addresses a critical practical issue: how to effectively fuse dense and sparse advantage signals without destabilizing training. The proposed SAF framework is lightweight and modular, making it easy to integrate into existing RLVR pipelines. This is particularly relevant as the field moves toward more efficient and stable training of reasoning models.

Technical Contributions

  • Identification of two miscalibrations: The paper pinpoints magnitude mismatch (OPD advantages can spike far beyond RLVR's bounded advantage, erasing its signal) and temporal mismatch (sustained full-strength OPD pulls the student toward the teacher, limiting exploration). These insights are crucial for understanding why naive fusion fails.
  • Four-stage pipeline: SAF applies a sparsify-then-compress mechanism for magnitude control and a warm-up-then-anneal mechanism for temporal control, each independently switchable. This modular design allows practitioners to adapt the framework to their specific needs.
  • Negligible overhead: The pipeline is lightweight, adding minimal computational cost, which is essential for large-scale training.
  • Compatibility with GRPO: SAF is instantiated with GRPO, a popular RLVR algorithm, demonstrating its practical applicability.

Results

The authors evaluate SAF on seven mathematical reasoning and code generation benchmarks using Qwen3-1.7B/4B/8B models. Across all six model-domain settings, SAF consistently outperforms fixed-coefficient GRPO+OPD fusion, with aggregate score improvements ranging from 0.51% to 2.70%. Notably, SAF avoids entropy collapse, which is a common failure mode in RLVR+OPD fusion, and achieves more stable training. These results are robust across model sizes and domains, indicating the generalizability of the approach.

Significance

SAF offers a practical solution to a pressing problem in RLVR: how to leverage dense teacher signals without sacrificing exploration or stability. By providing a simple, modular framework, it enables practitioners to improve performance on reasoning and code generation tasks with minimal overhead. The insights into magnitude and temporal mismatches are broadly applicable to other advantage fusion scenarios, potentially influencing future research on multi-signal reinforcement learning. As RLVR becomes more prevalent in training large language models, methods like SAF will be essential for achieving stable and effective learning.