🤖 AI Summary
This work addresses the issue of advantage collapse in Group Relative Policy Optimization (GRPO), where homogeneous rewards within groups lead to vanishing gradients and stalled learning. To diagnose this phenomenon quantitatively, the study introduces Advantage Collapse Rate (ACR) as a novel metric and proposes AVSPO, a lightweight algorithm that adaptively injects virtual reward samples to sustain effective learning signals without incurring additional inference overhead. Evaluated within the RLVR framework across models ranging from 0.5B to 14B parameters, AVSPO reduces ACR by 58–63% and improves mathematical reasoning accuracy by 4–6 percentage points, while preserving strong out-of-domain generalization capabilities.
📝 Abstract
Group Relative Policy Optimization (GRPO), a prominent algorithm within the Reinforcement Learning from Verifiable Rewards (RLVR) framework, has achieved strong results in improving the reasoning capabilities of large language models (LLMs). However, GRPO is prone to advantage collapse, a failure mode where homogeneous rewards within a group (e.g., all correct or all incorrect answers) yield near-zero advantages and vanishing gradients. To address this, we introduce the Advantage Collapse Rate (ACR), the first diagnostic metric quantifying the proportion of training batches with ineffective gradients. Across models from 0.5B to 14B parameters on mathematical reasoning benchmarks, we show that ACR strongly predicts training stagnation and final performance. We then propose Adaptive Virtual Sample Policy Optimization (AVSPO), a lightweight extension of GRPO that injects virtual reward samples, guided by real-time ACR monitoring, to enable learning from homogeneous groups without additional model rollouts. AVSPO reduces advantage collapse by 58-63% relative to GRPO and yields consistent accuracy gains of 4-6 percentage points across all model scales, while maintaining generalization on the evaluated out-of-domain task. Code and datasets are available at https://qingyonghu.github.io/AVSPO.