A Gradient Perspective on RLVR Stability and Winner Advantage Policy Optimization
Summary
This paper analyzes token-level gradient dynamics in RLVR training, revealing how advantage sign and token probability jointly affect update stability, and introduces Winner Advantage Policy Optimization (WAPO) which performs clipped updates only on positive-advantage completions to improve stability.
View Cached Full Text
Cached at: 06/17/26, 03:35 AM
Paper page - A Gradient Perspective on RLVR Stability and Winner Advantage Policy Optimization
Source: https://huggingface.co/papers/2606.16154 Rather than treating training collapse as a black box, the paper analyzestoken-level gradient dynamicsand derives a simple taxonomy showing that the effect of an update depends jointly on theadvantage signand the token’s probability under the current policy. This provides an intuitive explanation for why entropy sometimes collapses so abruptly.
The resulting algorithm,Winner Advantage Policy Optimization (WAPO), is almost surprisingly simple: perform clipped policy updates only on positive-advantage completions. Despite this small change, it consistently improves training stability while matching or exceeding GRPO-style baselines across math reasoning and multi-hop QA.
Similar Articles
Don't Let Gains FADE: Breaking Down Policy Gradient Weights in RL
This paper introduces FADE (Focal Advantage with Dynamic Entropy), a self-adapting advantage function that dynamically schedules gradient weights during RL post-training of LLMs, achieving faster convergence and better accuracy-diversity trade-offs compared to static baselines.
Don't Peek at the Answer: Outcome-Masked Group Relative Policy Optimization for Label-Free RLVR
The paper proposes OM-GRPO, a label-free RLVR framework that decouples reward estimation from policy optimization by masking gradients on answer spans, and introduces Contrast-Augmented Reward to refine reward estimation without extra rollouts. It consistently outperforms existing label-free methods and matches supervised ground-truth reward training across reasoning benchmarks.
GRAIL: Gradient-Reweighted Advantages for Reinforcement Learning with Verifiable Rewards
GRAIL introduces gradient-reweighted advantages to improve token-level credit assignment in reinforcement learning for LLM reasoning, outperforming GRPO across multiple models.
Value-Gradient Hypothesis of RL for LLMs
This paper introduces the value-gradient hypothesis to explain why critic-free RL methods like PPO and GRPO work well for LLMs, showing that the actor backward pass carries a value-gradient-like signal. It derives a predictive criterion for when RL is most effective along the pretraining trajectory.
PAIR: Pairwise-Aware Inclusion Reweighting for Adaptive Rollout Allocation in RLVR
This paper introduces PAIR, a pairwise-aware inclusion reweighting method for adaptive rollout allocation in RLVR, improving sample efficiency and accuracy over pointwise allocators by correcting biases in pairwise gradient estimation.