INQUIRING LINE

Reinforcement training tends to sharpen what a model already knew rather than teach it new things — can any variant fix that?

Can on-policy optimization variants avoid the probability squeezing problem?

This explores whether tweaking on-policy RL (GRPO-style RLVR and its cousins) can escape the 'probability squeezing' failure — where reward optimization sharpens the policy onto a narrow band of already-known high-reward outputs instead of finding genuinely new ones.


This explores whether variants of on-policy RL can dodge probability squeezing — the tendency of reward maximization to compress a model's output distribution onto solutions it could already reach, rather than expanding what it can do. The honest starting point in the corpus is that the squeezing isn't an implementation bug you patch out; it's what on-policy reward maximization *does*. Does RLVR actually expand what models can reason about? shows via pass@k that base models actually beat their RLVR-trained versions at high k: the training raises sampling efficiency by concentrating probability on solutions already latent in the base distribution, but the reachable set doesn't grow. So 'squeezing' and 'the improvement' are often the same mechanism viewed from two angles.

That same compression shows up under different names across the corpus, which suggests it's structural. Does policy entropy collapse limit reasoning performance in RL? gives it an empirical law — performance saturates as policy entropy heads to zero — and Does reinforcement learning squeeze exploration diversity in search agents? finds the identical entropy-collapse signature in search agents, not just reasoning. Meanwhile Does binary reward training hurt model calibration? shows the reward *shape* itself pushes the model toward confident narrowing: binary correctness rewards never penalize confident wrong answers, so the policy learns to squeeze probability onto high-confidence guesses.

Here's the interesting part for your question: the corpus does describe on-policy interventions that manage the squeezing rather than abolish it. Entropy-collapse work names specific mechanisms — Clip-Cov, KL-Cov, GPPO — that deliberately preserve exploratory capacity by controlling *how fast* entropy drops during training Does policy entropy collapse limit reasoning performance in RL?. These are on-policy variants, and they buy you a higher performance ceiling by not letting the distribution collapse as hard. But note what they don't claim: they slow the squeeze, they don't reverse it into genuine capability expansion.

The more suggestive escape routes change what signal the policy optimizes on. Can natural language feedback overcome numerical reward plateaus? argues numerical rewards plateau precisely because a scalar carries no information about *why* a solution failed — feeding chain-of-thought critiques back in lets models produce solutions they were stuck on, breaking the plateau that pure reward-scaling can't. Can an agent's own beliefs guide credit assignment without critics? replaces sparse terminal reward with a dense per-turn belief-shift signal, and Can models improve themselves using only majority voting? bootstraps reward from consensus on unlabeled data. These are still on-policy, but they attack the information-starvation that makes squeezing so severe.

The thing you might not have expected: the corpus repeatedly pairs on-policy RL with SFT or distillation as the actual expander. In both the search-diversity and the RLVR-boundary findings, the move that *adds* new reachable behavior is off-policy — SFT on diverse demonstrations preserves exploration breadth Does reinforcement learning squeeze exploration diversity in search agents?, and distillation genuinely transfers reasoning patterns RL cannot Does RLVR actually expand what models can reason about?. So the corpus's answer is closer to: on-policy variants can *mitigate* squeezing (entropy control, richer feedback, denser reward), but the clean way to *avoid* the capability ceiling is to stop being purely on-policy — inject diverse off-policy data alongside it.


Sources 7 notes

Does RLVR actually expand what models can reason about?

Pass@k analysis shows base models outperform RLVR models at high k, indicating RLVR doesn't expand solvable problems but rather narrows sampling toward solutions already in the base model's distribution. Distillation, by contrast, genuinely transfers new reasoning patterns.

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.

Does binary reward training hurt model calibration?

Binary correctness rewards incentivize high-confidence guessing because they don't penalize confident wrong answers. Adding the Brier score as a second reward term mathematically guarantees joint optimization of accuracy and calibration without trade-off.

Can natural language feedback overcome numerical reward plateaus?

Critique-GRPO shows that models stuck on performance plateaus can generate correct solutions when given chain-of-thought critiques, revealing that numerical rewards lack critical information about why failures occur and how to improve.

Show all 7 sources
Can an agent's own beliefs guide credit assignment without critics?

ΔBelief-RL uses log-ratios of sequential probability estimates to assign per-turn credit without critic networks or process reward models. Tested on 20 Questions, smaller models trained this way matched or exceeded prior SOTA and larger baselines while generalizing beyond training.

Can models improve themselves using only majority voting?

Test-Time RL generates reward signals by majority voting across repeated samples, enabling policy improvement without ground-truth labels or trained reward models. This approach works surprisingly well because consensus answers tend to be correct, creating a bootstrapping loop where test-time compute enables training that improves the model.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

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 an RL-for-LLMs analyst. Still-open question: can on-policy optimization variants avoid probability squeezing — reward maximization concentrating mass on solutions already latent in the base model rather than expanding what it can reach?

What a curated library found — and when (dated claims, not current truth; findings span ~2025–2026):
- Base models beat their RLVR versions at high pass@k; training raises sampling efficiency but the reachable set doesn't grow — squeezing IS the improvement (~2025).
- Performance saturates as policy entropy → 0; the same entropy-collapse signature appears in search agents, not just reasoning (~2025).
- Binary correctness rewards never penalize confident wrong answers, so the policy squeezes mass onto high-confidence guesses (~2025).
- On-policy fixes (Clip-Cov, KL-Cov, GPPO) only slow the squeeze; richer signals — CoT critiques, dense belief-shift reward, majority-vote reward on unlabeled data — mitigate but don't reverse it. The clean expander is off-policy: SFT/distillation on diverse data (~2025–2026).

Anchor papers (verify; mind their dates): Does RL Really Incentivize Reasoning (arXiv:2504.13837, 2025); The Entropy Mechanism of RL (arXiv:2505.22617, 2025); Critique-GRPO (arXiv:2506.03106, 2025); TTRL (arXiv:2504.16084, 2025).

Your task:
(1) RE-TEST EACH CONSTRAINT. For every finding, judge whether newer models, training methods, tooling, orchestration (memory, multi-agent), or evaluation have RELAXED or OVERTURNED it. Separate the durable question from the perishable limit; cite what resolved it, and say where a constraint still holds. Bias toward RECONCILING the threads — does a single mechanism explain squeezing, entropy collapse, and miscalibration, and has any on-policy variant genuinely dissolved it?
(2) Surface the strongest contradicting or superseding work from the last ~6 months.
(3) Propose 2 research questions that assume the regime may have moved.

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