[ICLR 2025] Entropy-Preserving RL: Solving the Collapse Problem in LLM Reasoning

Entropy-Preserving Reinforcement Learning

Aleksei Petrenko, Ben Lipkin, Kevin Chen, Erik Wijmans, Marco Cusumano-Towner, Raja Giryes, Philipp Krähenbühl
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces ENTROPY-PRESERVING REINFORCEMENT LEARNING, proposing two main algorithms, REPO and ADAPO, to prevent the common issue of entropy collapse in policy gradient training for Large Language Models (LLMs). By actively monitoring and controlling entropy trajectories, the methods achieve state-of-the-art results on the AppWorld benchmark (79% Test Normal) and maintain superior exploration capabilities for sequential learning tasks.

TL;DR

Policy gradient algorithms (like GRPO or PPO) often trade away a model's "creativity" or entropy for immediate reward, leading to diversity collapse. This paper identifies that how entropy evolves during training (the journey) matters more than the final result. By introducing REPO (advantage rescaling) and ADAPO (adaptive clipping), the authors prevent this collapse, achieving SOTA on AppWorld and ensuring models remain "trainable" for future tasks.

The "Greedy" Trap: Why Standard RL Fails

In the rush to boost reasoning performance (pass@1), current RL methods often "over-sharpen" the model. They reinforce what the model already knows, making the distribution so narrow that the model loses its ability to explore alternative correct paths.

The authors argue that this isn't just an algorithmic choice—it's often exacerbated by hidden numerical artifacts. For instance, they discovered that using BF16 quantization during training introduces a multiplicative upward bias in importance ratios, effectively creating an accidental "entropy-decreasing" asymmetric clipping that sabotages training stability.

Methodology: Engineering the Entropy Journey

The core contribution lies in two distinct mechanisms for explicit entropy control:

1. REPO (Regulated Entropy Policy Optimization)

Instead of adding a heavy-handed global entropy bonus (which is memory-intensive), REPO modifies the advantage function directly: Where is the mean-centered log-probability. By subtracting this term, the algorithm essentially "rotates" the advantage space, boosting the rewards for rare, surprising, but correct actions.

2. ADAPO (Adaptive Asymmetric Clipping)

Building on DAPO, which uses static asymmetric clipping, ADAPO introduces a bidirectional controller. If entropy drops below the initial baseline, it widens the upper clipping bound () to allow for more probability increases; if entropy rises too high, it tightens the bounds.

Overall Architecture Figure 1: Comparison of entropy trajectories. Note how algorithms that maintain steady entropy (top) correlate with higher final test accuracy (bottom).

Experimental Battleground: AppWorld & AIME

The authors tested their methods on two fronts: AppWorld (complex tool-use) and AIME (high-level math).

SOTA Results

By fixing numerical precision issues (moving from BF16 to FP16) and applying entropy preservation, the team achieved:

  • AppWorld Test Normal: 79% (New SOTA).
  • AppWorld Test Challenge: 71%.

The "Sequential Learning" Proof

Perhaps the most striking evidence is the Sequential Learning experiment. Models trained with standard GRPO "collapsed"—their entropy hit near-zero. When these models were then asked to learn a new task, they failed because they could no longer explore. In contrast, REPO-trained models maintained their "curiosity" and successfully adapted to new environments.

Performance Comparison Figure 4: REPO-R and ADAPO consistently outperform baselines like GRPO by preserving the model's exploratory power.

Critical Insights: The Numerical Shadow

A major takeaway for practitioners is the impact of 16-bit quantization. The paper proves that BF16 rounding systematically favors entropy decrease. By simply switching to FP16 and ensuring full-precision log-probability calculations, the authors found that many "algorithmic" instabilities simply vanished.

Conclusion: Entropy as a First-Class Citizen

This work shifts the perspective of RL post-training from "reward maximization" to "distribution management." If we want agents that can not only solve known problems but also adapt to new ones, we must treat entropy as a first-class citizen in our loss functions.

Future Outlook: The integration of REPO with asynchronous training pipelines could bridge the gap between high-throughput "weakly on-policy" methods and the high-stability "strictly on-policy" methods like RLOO.

Find Similar Papers

Try Our Examples

  • Which recent LLM reinforcement learning papers focus specifically on optimizing pass@k performance rather than standard pass@1 reward maximization?
  • What is the definitive paper on 'entropy collapse' in Transformer-based reinforcement learning, and how does this paper's 'multiplicative relationship' theory extend that foundation?
  • Are there studies applying entropy-preserving policy gradients to multimodal agent tasks, such as vision-language navigation or GUI automation?
Contents
[ICLR 2025] Entropy-Preserving RL: Solving the Collapse Problem in LLM Reasoning
1. TL;DR
2. The "Greedy" Trap: Why Standard RL Fails
3. Methodology: Engineering the Entropy Journey
3.1. 1. REPO (Regulated Entropy Policy Optimization)
3.2. 2. ADAPO (Adaptive Asymmetric Clipping)
4. Experimental Battleground: AppWorld & AIME
4.1. SOTA Results
4.2. The "Sequential Learning" Proof
5. Critical Insights: The Numerical Shadow
6. Conclusion: Entropy as a First-Class Citizen