You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**MASPO (Mass-Adaptive Soft Policy Optimization)** is a unified RLVR framework for improving the robustness and sample efficiency of LLM reasoning.
25
+
26
+
Existing RLVR methods such as **GRPO** rely on rigid, uniform, and symmetric trust-region mechanisms, which are often misaligned with the optimization dynamics of large language models. MASPO addresses three key limitations:
27
+
28
+
1.**Inefficient gradient utilization** caused by hard clipping
29
+
2.**Probability mass insensitivity** under uniform ratio constraints
30
+
3.**Asymmetric signal reliability** between positive and negative samples
31
+
32
+
To address these issues, MASPO combines:
33
+
34
+
- a **soft Gaussian gating** mechanism,
35
+
- a **mass-adaptive limiter**, and
36
+
- an **asymmetric risk controller**.
37
+
38
+
Extensive experiments show that MASPO consistently improves both reasoning accuracy and sample efficiency across multiple model scales.
39
+
21
40
## 📖 Abstract
22
41
23
42
Current Reinforcement Learning with Verifiable Rewards (RLVR) paradigms, such as GRPO, rely on rigid, uniform, and symmetric trust region mechanisms that are fundamentally misaligned with the complex optimization dynamics of Large Language Models (LLMs). In this paper, we identify three critical disconnects in existing methods: (1) **inefficient gradient utilization** caused by the binary cutoff of hard clipping, (2) **probability mass insensitivity** arising from uniform ratio constraints that ignore the token distribution, and (3) **asymmetric signal reliability** stemming from the disparate credit assignment ambiguity between positive and negative samples. To bridge these gaps, we propose **Mass-Adaptive Soft Policy Optimization (MASPO)**, a unified framework designed to harmonize these three dimensions. MASPO integrates a differentiable soft Gaussian gating to maximize gradient utility, a mass-adaptive limiter to balance exploration across the probability spectrum, and an asymmetric risk controller to align update magnitudes with signal confidence. Extensive evaluations demonstrate that MASPO serves as a robust, all-in-one RLVR solution, significantly outperforming strong baselines in sample efficiency and reasoning accuracy across diverse LLM scales (1.5B/7B/14B).
@@ -41,11 +60,13 @@ Current Reinforcement Learning with Verifiable Rewards (RLVR) paradigms, such as
41
60
42
61
### Installation
43
62
44
-
This implementation is based on [verl](https://github.com/volcengine/verl), a flexible and efficient RLHF framework. Please follow the verl installation guide first.
63
+
This implementation is built on top of [verl](https://github.com/volcengine/verl), a flexible and efficient RLHF / RLVR framework.
64
+
65
+
Please install `verl` first by following its official setup instructions, and then install the dependencies for this repository:
0 commit comments