INQUIRING LINE

If you make an AI more confident only when it's unsure, does it stop exploring other ways to solve problems?

How does entropy-adaptive sharpening affect exploration in reasoning tasks?

This explores what happens to a reasoning model's willingness to try different paths when its output distribution is sharpened (made more confident) by an amount that depends on how uncertain the model is at each step. The corpus has no note on entropy-adaptive sharpening by name, so this answer covers the nearby territory: how entropy relates to exploration, and where in a reasoning chain it matters.


This explores what happens to a reasoning model's willingness to try different paths when its output distribution is sharpened (made more confident) by an amount that depends on how uncertain the model is at each step. The corpus has no note on entropy-adaptive sharpening by name, so what follows is the surrounding territory. It covers how entropy relates to exploration, and which tokens carry that exploration.

Sharpening trades exploration for reliability, and the corpus shows the cost of overdoing it. RL training already sharpens models as a side effect. Does reinforcement learning squeeze exploration diversity in search agents? reports that RL compresses behavioral diversity through entropy collapse, the same mechanism documented in reasoning. Policies settle on a few narrow reward-maximizing strategies, while SFT on diverse demonstrations keeps the breadth. A fixed, uniform sharpening would risk the same collapse. That risk is the case for making the sharpening adaptive.

The best evidence for where adaptivity would help is Do high-entropy tokens drive reasoning model improvements?. Only about 20% of tokens in a reasoning chain are high-entropy forking points, and RLVR mostly adjusts those. Training on that 20% alone matches or beats updating everything. Exploration seems to live in a small minority of decision points, and the other 80% are close to settled. This part is my inference, since the note doesn't test sharpening. An entropy-keyed rule would be choosing what to do at those forks. Sharpening the confident tokens costs little. Sharpening the forks is where diversity gets lost.

Sharpening also can't add exploration that the model doesn't already have. Do base models already contain hidden reasoning ability? lists decoding changes among five different ways of unlocking reasoning that base models already contain, and concludes that the bottleneck is elicitation rather than capability. Reshaping the distribution therefore selects among paths the model can already produce, so how much room there is to explore depends on what the base model holds.

Some approaches keep exploration alive without managing token entropy at all. Can abstractions guide exploration better than depth alone? gets breadth at the level of strategy. At large compute budgets, diverse abstractions beat parallel solution sampling, and depth-only chains suffer from underthinking. Can models learn better by training on messy exploration paths? and Does training on messy search processes improve reasoning? build exploration in through training data. Models trained on failed attempts and backtracking reach 25% higher accuracy than those trained on clean solutions alone. What the corpus doesn't show is any head-to-head test of adaptive sharpening against fixed temperature or these alternatives.


Sources 6 notes

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.

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 abstractions guide exploration better than depth alone?

RLAD jointly trains abstraction and solution generators, showing that allocating test-time compute to diverse abstractions outperforms parallel solution sampling at large budgets. Abstractions create structured breadth-first exploration that prevents the underthinking failure mode of depth-only reasoning chains.

Can models learn better by training on messy exploration paths?

Research shows that training on messy trajectories—failed attempts, self-correction, and backtracking—teaches more robust reasoning than training only on shortcut solutions. This approach models o1-style deep reasoning as search internalization rather than solution memorization.

Show all 6 sources
Does training on messy search processes improve reasoning?

Stream of Search pretraining, which represents exploration and backtracking as serialized strings, achieves 25% higher accuracy than optimal-trajectory-only training. Models learn internal world models for search and adaptive strategies rather than fixed external methods.

Papers this line draws on 8

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