Clipping Kills Exploration: How Asymmetric RL Fixes LLM Reasoning Training
UP removes gradient clipping for positive advantages in LLM RL training, breaking the exploration-stability tradeoff that constrains GRPO, DAPO, and GSPO.
Clipping is supposed to make RL training safe. It does, but the cost is structural: every time a model produces a correct answer it wasn't confident about, the clipping mechanism cuts the gradient update short, teaching the model to stay near what it already knows rather than reaching toward harder reasoning paths it hasn't yet mastered.
The standard framing treats this as an acceptable tradeoff. Stability is worth some lost exploration. UP (Unbounded Positive Asymmetric Optimization) shows the tradeoff is not necessary, and that accepting it has been silently capping reasoning performance across every major RL framework used for LLM post-training.
The core problem is formalized through a concept called Probability Capacity (Cap): the headroom a policy has to increase the probability of a given action. Low-confidence correct answers have high Cap, meaning the model could update substantially toward them, but conservative clipping truncates that update before it lands. The result is a policy that systematically underweights exactly the reasoning paths worth learning: the ones the model can get right but doesn't yet trust. Think of it as a student who answers a hard question correctly by working through uncertainty, then gets told to stop practicing that type of problem because the teacher's grading rubric penalizes shaky handwriting.
UP resolves this with an asymmetric gradient design. For negative advantages (wrong answers), standard clipping stays in place: the safeguard against catastrophic instability remains. For positive advantages (correct answers), UP removes the clip entirely and anchors the update using a stop-gradient operator on the current policy state. This stop-gradient move is what makes unbounded positive updates stable. Instead of the gradient propagating back through a shifting reference distribution and amplifying instability, it locks the reference in place, letting the magnitude of the update scale with how much the model underestimated a correct path, without the runaway feedback that makes unclipped IS dangerous in symmetric form.
The asymmetry is the mechanism. Negative updates stay bounded. Positive updates go as far as the evidence warrants. The design slots into existing frameworks without architectural changes: UP extends across token-level objectives (GRPO, DAPO) and sequence-level objectives (GSPO), treating each as a special case of a more general optimization surface.
Across experiments spanning dense models, mixture-of-experts architectures, and vision-language models, UP consistently lifts reasoning accuracy over its base RL algorithm. Applied to DAPO, it improves performance on math reasoning benchmarks. Applied to GSPO and GRPO, the gains hold across both language and multimodal training modalities. No single benchmark number tells the full story here because the contribution is a drop-in objective, not a one-shot result. The consistent direction across diverse architectures and training setups is the evidence that matters. For teams running RL post-training on reasoning models, the takeaway is direct: the clipping configuration you inherited from PPO-era stability concerns is actively suppressing exploration of correct low-confidence paths, and replacing it with UP requires no pipeline changes beyond the loss function.
We're thinking: We find the stop-gradient framing more interesting than the asymmetry itself. The common assumption in LLM RL is that stability requires symmetric constraints, that you can't let positive updates run free without the same guardrails applied to negative ones. UP shows that stability actually comes from where the reference point is anchored, not from whether the clip exists. That reframes the whole design space: if you can hold the reference fixed during a positive update, you can be as aggressive as the signal supports. The practical implication is that teams who have been tuning clip ratios as their primary exploration knob have been solving the wrong problem. The knob that matters is reference anchoring, and UP makes that explicit in the objective itself.
Key takeaways:
- UP restructures RL optimization asymmetrically: positive advantages receive unbounded gradients stabilized by stop-gradient anchoring, while negative advantages retain standard clipping, decoupling exploration capacity from stability constraints.
- Gains hold across GRPO, DAPO, and GSPO on dense, MoE, and vision-language architectures in both language and multimodal training; the main caveat is that absolute benchmark numbers depend on the base algorithm and model, so UP should be evaluated against your specific training stack rather than treating any single reported delta as universal.
- Teams running RL fine-tuning for reasoning models should swap in UP as the loss objective and re-examine clip ratio tuning time previously spent on positive-side constraints, redirecting that effort toward data quality and reward signal calibration instead.