INQUIRING LINE

Does policy entropy collapse limit how many iterations of reasoning training work?

This explores whether the 'entropy collapse' problem in reinforcement-learning reasoning training — where a model's exploration narrows to near zero — sets a hard ceiling on how far you can push that training, and what the corpus says you can do about it.


This explores whether policy entropy collapse caps the returns from RL-based reasoning training. The short answer from the collection: yes, but it's a managed limit, not an absolute wall. The clearest statement of the ceiling comes from work showing that reasoning performance follows a predictable law — R = -a·exp(H) + b — where gains saturate as the policy's entropy drifts toward zero Does policy entropy collapse limit reasoning performance in RL?. In plain terms: as training keeps reinforcing the few strategies that already win reward, the model stops trying anything new, and once it stops exploring, further iterations buy you almost nothing. The same study names the levers — Clip-Cov, KL-Cov, GPPO — that deliberately slow entropy's decline to keep exploratory capacity alive longer.

What makes this more than a single finding is that the same collapse mechanism shows up in a neighboring domain. RL-trained search agents lose behavioral diversity exactly the way reasoning models do — policies converge on narrow reward-maximizing moves — and supervised fine-tuning on diverse demonstrations restores the breadth that RL squeezes out Does reinforcement learning squeeze exploration diversity in search agents?. So the limit isn't a quirk of reasoning tasks; it's a general property of how reward maximization compresses a policy. That reframes the iteration question: you're not fighting a task-specific bug, you're managing a trade-off baked into RL itself.

Where the entropy actually lives turns out to be surprisingly concentrated. Only about 20% of tokens — the high-entropy 'forking points' where the model decides which way to reason — carry the learning signal, and training on just those matches full updates Do high-entropy tokens drive reasoning model improvements?. This connects to a two-phase picture of RL training: an early phase that locks in execution correctness, followed by a phase where strategic planning becomes the bottleneck and planning-token entropy actually rises while execution entropy stabilizes Does RL training follow a predictable two-phase learning sequence?. Read together, these suggest collapse isn't uniform — it's the planning/forking tokens whose diversity you most need to protect across iterations, and that's also where late-stage gains are still available.

There's a deeper reason iterations hit diminishing returns, and it's worth knowing: several independent results argue RL mostly *selects* reasoning that base models already contain rather than creating new capability — RL steering, critique tuning, SAE feature steering, and RLVR all elicit latent ability already present in base activations Do base models already contain hidden reasoning ability?. If post-training is fundamentally elicitation, then once you've surfaced what's there, more iterations have less left to find — entropy collapse is partly the symptom of running out of new behaviors to select. That also explains why some teams are trying to move reasoning earlier, planting chain-of-thought during pretraining itself with information-gain rewards rather than relying on RL to install it afterward Can chain-of-thought reasoning be learned during pretraining itself?.

The thing you might not have expected to want: the ceiling can be sidestepped by changing the training objective rather than just nursing entropy. Approaches that reward explanation quality and not just answer correctness internalize knowledge more durably than token-level supervision Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?, and energy-based transformers reach deliberative 'System 2' behavior from unsupervised learning with better scaling and out-of-distribution generalization — no reward-maximizing collapse to manage at all Can energy minimization unlock reasoning without domain-specific training?. The honest caveat underneath all of it: even well-trained chain-of-thought degrades predictably outside its training distribution Does chain-of-thought reasoning actually generalize beyond training data?, so preserving entropy keeps iterations *productive* — it doesn't promise the reasoning you get is robust.


Sources 9 notes

Does policy entropy collapse limit reasoning performance in RL?

Empirical law R = -a·exp(H) + b shows performance saturates when policy entropy approaches zero. Interventions like Clip-Cov, KL-Cov, and GPPO preserve exploratory capacity by managing entropy reduction during training.

Does reinforcement learning squeeze exploration diversity in search agents?

RL training compresses behavioral diversity in search agents through the same entropy collapse mechanism documented in reasoning—policies converge on narrow reward-maximizing strategies. SFT on diverse demonstrations preserves exploration breadth, suggesting diversity-preservation techniques are essential for RL search scaling.

Do high-entropy tokens drive reasoning model improvements?

Only ~20% of tokens exhibit high entropy as pivotal reasoning decision points; RLVR primarily adjusts these forking tokens. Training exclusively on them matches or exceeds full-gradient performance, revealing that the minority carries the learning signal.

Does RL training follow a predictable two-phase learning sequence?

Across eight models, RL training consistently shows a first phase where execution correctness drives learning, followed by a second phase where strategic planning becomes the bottleneck. Planning token entropy increases while execution entropy stabilizes, and concentration of optimization on planning tokens yields significant performance gains.

Do base models already contain hidden reasoning ability?

Five independent mechanisms—RL steering, critique fine-tuning, decoding changes, SAE feature steering, and RLVR—all elicit reasoning already present in base model activations. Post-training selects rather than creates reasoning; the bottleneck is elicitation, not capability acquisition.

Can chain-of-thought reasoning be learned during pretraining itself?

RLP treats CoT as exploratory action during pretraining, using log-likelihood improvement as verifier-free reward. Applied to Qwen3-1.7B and Nemotron-Nano-12B, the method improves math and science benchmarks substantially, suggesting reasoning can be planted earlier in training.

Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?

RLAG rewards both answer accuracy and explanation rationality by cycling between augmented and unaugmented generation, progressively internalizing coherent knowledge structures. This outperforms SFT because it prioritizes reasoning quality over token-level correctness.

Can energy minimization unlock reasoning without domain-specific training?

Energy-Based Transformers assign energy values to input-prediction pairs and use gradient descent minimization for inference, yielding 35% higher training scaling rates and 29% more inference-compute gains than Transformer++, while generalizing better on out-of-distribution data without domain-specific scaffolding.

Does chain-of-thought reasoning actually generalize beyond training data?

DataAlchemy experiments show CoT fails systematically under distributional shifts in task, length, and format. Models produce fluent but logically inconsistent reasoning — imitating reasoning form without valid underlying logic.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are a reasoning-training researcher evaluating whether policy entropy collapse truly caps iteration returns, or whether recent work has relaxed this constraint. The question remains open: can we train reasoning models indefinitely, or does entropy's inevitable decline impose a hard ceiling?

What a curated library found — and when (dated claims, not current truth):

Findings span April 2025–May 2026. The library reports:
• Reasoning gains follow R = −a·exp(H) + b; saturation occurs as policy entropy → 0, with entropy-preserving methods (Clip-Cov, KL-Cov, GPPO) extending productive iterations (~2505.22617, June 2025).
• Only ~20% of tokens (high-entropy 'forking points') drive learning; training on these matches full updates, suggesting collapse is non-uniform (~2506.01939, June 2025).
• RL mostly *selects* latent reasoning already in base models rather than creating new capability; once selection exhausts base capacity, iterations yield diminishing returns (~2504.09858, April 2025).
• Chain-of-thought reasoning degrades predictably outside training distribution, limiting robustness gains from extra iterations (~2508.01191, August 2025).
• Energy-based transformers achieve System 2 thinking from unsupervised learning without reward-collapse risk (~2507.02092, July 2025).

Anchor papers (verify; mind their dates):
• arXiv:2505.22617 (June 2025) — The Entropy Mechanism of Reinforcement Learning for Reasoning Language Models
• arXiv:2506.01939 (June 2025) — Beyond the 80/20 Rule: High-Entropy Minority Tokens Drive Effective RL
• arXiv:2504.09858 (April 2025) — Reasoning Models Can Be Effective Without Thinking
• arXiv:2508.01191 (August 2025) — Is Chain-of-Thought Reasoning of LLMs a Mirage?

Your task:
(1) RE-TEST EACH CONSTRAINT. For the entropy saturation law and the elicitation-not-creation claim: judge whether newer training recipes (multi-objective RL, diversity rewards, plan/execute decomposition, or pretraining-stage reasoning) have since pushed the ceiling higher or dissolved the constraint. Flag where collapse still demonstrably holds and where it may have been sidestepped.
(2) Surface the strongest CONTRADICTING work from the last ~6 months — especially any showing unbounded iteration gains, or entropy collapse overcome via orthogonal mechanisms (e.g., curriculum, model scaling, architectural changes).
(3) Propose 2 research questions that assume the regime has shifted: (a) If entropy collapse is a symptom of elicitation-exhaustion, can we pre-load base models with vastly more latent reasoning capability to unlock deeper iteration gains? (b) Can we distinguish entropy collapse caused by policy convergence from entropy collapse caused by task saturation, and does that distinction suggest different solutions?

Cite arXiv IDs; flag anything you cannot ground in a real paper.

Next inquiring lines