DASH: Divergence-Adaptive Supervision Horizons for Reinforcement Learning Optimization in Reasoning Models

Addressing the sparse signal problem in verifiable reward-based reinforcement learning (RLVR), existing policy self-distillation (OPSD) methods provide dense supervision via teacher models but ignore temporal structural differences during generation. This paper proposes DASH (Divergence-Adaptive Supervision Horizons), which constructs adaptive propagation gates by mapping the gap between local distillation signals and sequence means to control reverse multi-step aggregation. DASH dynamically adjusts token-level supervision weights based on the evolution of local divergence during generation, without requiring additional forward passes. Experiments on three mathematical reasoning benchmarks across three model scales show that DASH outperforms standard OPSD in all settings, significantly enhancing reasoning capabilities and offering a new paradigm for efficient reinforcement learning.

Background and Context

The training of reasoning capabilities in large language models has increasingly relied on verifiable reward-based reinforcement learning (RLVR). This approach leverages automatically verifiable outcome signals, such as correct mathematical proofs or code execution results, to guide model optimization. However, a fundamental limitation of RLVR is the sparsity of these signals. Feedback is typically provided only at the sequence level, meaning the model receives a binary reward only after generating an entire solution. This lack of intermediate feedback makes it difficult for the model to learn fine-grained strategies during the generation process, often leading to inefficient exploration and slow convergence.

To mitigate the issue of sparse signals, researchers have developed policy self-distillation methods, such as Online Policy Self-Distillation (OPSD). OPSD attempts to provide dense, token-level supervision by querying a privileged teacher model at prefixes visited by the student model. By comparing the student's output distribution with the teacher's, OPSD generates intermediate loss signals that guide the student through the reasoning steps. While this approach significantly alleviates signal sparsity compared to pure RLVR, it operates under a critical assumption: that all local divergences between the student and teacher should be treated equally. This standardization ignores the temporal structural differences inherent in the generation process, potentially leading to suboptimal gradient updates.

Deep Analysis

The core limitation of standard OPSD lies in its failure to account for the temporal context of divergence. In autoregressive generation, the same degree of deviation between student and teacher outputs can have vastly different implications depending on when it occurs and the history of previous errors. For instance, a divergence early in a reasoning chain might be correctable and lead to a valid solution, whereas a similar divergence later in the chain might indicate a fundamental misunderstanding that cannot be recovered from. Standard OPSD assigns a uniform coefficient to all local divergences, regardless of their position or the specific sequence of divergence they belong to. This static weighting prevents the model from adapting its learning rate based on the evolving difficulty or validity of the reasoning path.

To address this, the DASH (Divergence-Adaptive Supervision Horizons) method introduces a dynamic mechanism for adjusting token-level supervision weights. DASH constructs adaptive propagation gates by mapping the gap between local distillation signals and the sequence mean. Specifically, it calculates the local distillation signal at each step, defined as the difference between the student's output distribution and the teacher's distribution at the corresponding prefix. It then computes the mean of all local signals across the sequence to establish a baseline. The deviation of each local signal from this mean is mapped to a gate value, which reflects the relative severity of divergence at that step.

These gate values control reverse multi-step aggregation during backpropagation, allowing for dynamic weight adjustment without additional computational overhead. If a step exhibits high divergence but contributes positively to the final outcome, the gate allows more gradient flow, reinforcing the correct reasoning path. Conversely, if the divergence represents ineffective exploration or error, the gate suppresses gradient flow. This mechanism enables the model to identify and strengthen paths that lead to successful outcomes while penalizing futile exploration. Crucially, DASH achieves this by reusing existing teacher and student distributions, requiring no additional forward passes and incurring minimal computational cost.

Industry Impact

Experimental validation of DASH was conducted across three mathematical reasoning benchmarks and three different model scales. The results demonstrate that DASH consistently outperforms standard OPSD in all settings. In challenging mathematical reasoning tasks, DASH not only improved final answer accuracy but also significantly reduced the time required for convergence during training. Ablation studies confirmed that the performance gains are primarily derived from the adaptive utilization of temporal structure. When the adaptive gating mechanism was removed and replaced with fixed weights, performance dropped markedly, underscoring the necessity of dynamic weight adjustment.

Furthermore, DASH exhibits strong scalability across different model sizes. Small models benefited from DASH to a similar extent as larger models, suggesting that the method is particularly valuable in resource-constrained environments. This efficiency makes DASH highly attractive for industrial deployment, where computational costs are a primary concern. By optimizing the allocation of supervision signals, DASH reduces the number of training steps required to achieve target performance levels. This reduction in training duration directly translates to lower carbon footprints and operational costs, aligning with the growing industry emphasis on sustainable AI development.

For the open-source community, DASH offers a new perspective on optimizing reinforcement learning signals through fine-grained temporal analysis. It provides a practical, low-overhead upgrade to existing RLVR pipelines, lowering the barrier for researchers and developers to implement advanced reasoning capabilities. The method's ability to enhance training efficiency without architectural changes makes it an immediately applicable tool for improving the robustness and accuracy of large language models in complex reasoning scenarios.

Outlook

The implications of DASH extend beyond mathematical reasoning. Its core philosophy of time-sensitive and dynamically adaptive supervision can be explored in other generative tasks, such as code generation or natural language understanding. Future research may investigate integrating DASH with other sparse reward handling techniques to further unlock its potential in complex, multi-step reasoning environments. Additionally, the method's efficiency suggests it could be combined with larger-scale pre-training efforts to accelerate the development of more capable and efficient reasoning models.

As the field of AI continues to evolve, the need for efficient and precise training methods will only grow. DASH represents a significant step forward in this direction, offering a robust solution to the long-standing problem of signal sparsity in reinforcement learning. By enabling models to learn more effectively from their own generation processes, DASH paves the way for a new generation of reasoning models that are not only more accurate but also more efficient and sustainable. The adoption of such methods could fundamentally shift how large language models are trained, moving towards more intelligent and resource-conscious paradigms.

Sources