INQUIRING LINE

Should an AI grade its reasoning by checking confidence at every step, or by averaging one score over the whole attempt?

Does step-level confidence tracking outperform episode-level confidence averaging?

This explores whether watching a model's confidence at each reasoning step beats a single confidence score averaged over a whole attempt, both for picking good reasoning traces and for spotting where reasoning goes wrong.


This explores whether watching a model's confidence at each reasoning step beats a single confidence score averaged over a whole attempt. For filtering reasoning traces, the corpus says yes. Does step-level confidence outperform global averaging for trace filtering? finds that local step-level confidence catches reasoning breakdowns that a global average smooths over. One shaky step gets diluted by many confident ones, so the average hides it. Step-level tracking also lets you stop a bad trace partway through instead of paying for the whole thing. That gets accuracy gains comparable to naive majority voting with far fewer generated traces. The lesson there is that trace quality matters more than trace quantity.

Several other notes suggest why the step-level view carries more information, even though none of them test it against averaging directly. Can confidence trajectories reveal when reasoning goes wrong? shows that the shape of confidence over time matters. Models that commit to an answer early and then rationalize it tend to reason badly. Rewarding confidence that grows gradually improved accuracy on Countdown by 42 percentage points, with no process labels needed. An episode-level average can't tell a slow build from an early spike, because both can end at the same mean. Can confidence patterns reveal overthinking versus underthinking? points the same way. It uses confidence variance and overconfidence as live signals to steer a model away from overthinking or underthinking, and variance only exists if you keep the steps separate.

The corpus also complicates the question. The confidence level may not be the important part, and the average-versus-step choice matters less if confidence itself is a weak signal. Can past performance predict when a model will be right? argues that a single inference's confidence isn't enough. Its XConf method looks up how the model actually performed in past episodes at similar confidence levels. That matches ten-sample self-consistency at a tenth of the cost, and the gain depends entirely on the stored outcome history. Can pretraining data statistics detect hallucinations better than model confidence? goes further. It finds that rare entity combinations flag hallucination risk even when the model is highly confident, so a confident step can still be a wrong one. Finer-grained confidence catches more failures, but it can still miss the confidently wrong ones.

A different kind of step-versus-episode question comes up in training, and there the answer runs the other way. Can full episode rewards per step enable better credit assignment? gives every step the whole episode's reward. Group-relative comparison across rollouts then surfaces which action sequences work, and a 3B model trained this way beat 72B baselines by 50%. This is a reward signal, not confidence, so it isn't a direct rebuttal. It does show that a coarse episode-level signal can work well when many attempts are compared against each other. Granularity seems to help most when you must judge a single trace on its own, as in filtering. Comparing many attempts can make up for a coarser signal.

The corpus has one direct head-to-head, and step-level wins it for trace filtering. It doesn't show that step-level tracking is better for every use of confidence.


Sources 6 notes

Does step-level confidence outperform global averaging for trace filtering?

Local step-level confidence catches reasoning breakdowns that global averaging masks and enables early stopping before traces complete. This approach achieves comparable accuracy gains to naive majority voting with far fewer generated traces, proving trace quality matters more than quantity.

Can confidence trajectories reveal when reasoning goes wrong?

Models that commit to answers early then rationalize show measurable flawed reasoning. Rewarding gradual confidence growth via RL improves accuracy significantly—on Countdown by 42 percentage points—without needing process labels or external reward models.

Can confidence patterns reveal overthinking versus underthinking?

ReBalance uses confidence variance and overconfidence as diagnostic signals to apply training-free steering vectors that reduce overthinking redundancy while promoting exploration during underthinking, improving accuracy across models from 0.5B to 32B parameters.

Can past performance predict when a model will be right?

XConf matches ten-sample self-consistency at a tenth of the cost by retrieving the model's past episodes with similar confidence levels and reading their historical success rates. Ablations show the signal depends entirely on stored outcomes, not on the retrieval prompt itself.

Can pretraining data statistics detect hallucinations better than model confidence?

QuCo-RAG uses entity co-occurrence patterns from training data to trigger retrieval, successfully flagging hallucination risk even when models are highly confident. This data-side approach catches the root cause (unseen combinations) rather than the symptom (low confidence).

Show all 6 sources
Can full episode rewards per step enable better credit assignment?

MS-GRPO assigns cumulative episode reward to each step, and group-relative normalization across rollouts surfaces which action sequences succeed. A 3B model post-trained this way outperforms 72B baselines by 50%, showing the training method matters more than scale for multi-step tasks.

Papers this line draws on 8

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