A model can be highly confident and completely wrong — its confidence score isn't always the right signal to act on.
Can log-probability confidence be separated from decision-aligned signals?
This explores whether a model's raw token-level log-probability confidence is the same thing as a signal you can trust to drive a decision — and where the corpus shows the two come apart.
This question is really about a gap: the number a model assigns to how likely a token is (log-probability confidence) versus a signal that's actually aligned with making a good decision — whether to retrieve, whether to trust an answer, whether to stop reasoning. The corpus's clearest answer is that yes, the two can be pried apart, and the most interesting cases are exactly where they diverge. QuCo-RAG shows the split head-on: it triggers retrieval from entity co-occurrence statistics in the pretraining data, and catches hallucination risk *even when the model is highly confident* Can pretraining data statistics detect hallucinations better than model confidence?. Confidence there is not decision-aligned — the model is sure and wrong — so a data-side signal replaces it.
But the corpus also shows the opposite: when confidence *is* calibrated, it becomes the decision signal, no external verifier needed. RLPR and INTUITOR use the model's own token probabilities as the reward that trains reasoning, dropping external answer-checking entirely Can model confidence alone replace external answer verification?, and calibrated token-probability uncertainty beats multi-call adaptive-retrieval heuristics at deciding when to look something up, at a fraction of the cost Can simple uncertainty estimates beat complex adaptive retrieval?. So separability cuts both ways — the raw log-prob is sometimes a fine proxy for the decision and sometimes actively misleading.
What determines which? A recurring theme is that you often have to *reshape* the confidence before it aligns with a decision. Averaging confidence globally across a reasoning trace hides the local breakdown that actually matters; step-level confidence catches the failure the average masks Does step-level confidence outperform global averaging for trace filtering?. ReBalance reads confidence *variance and overconfidence* — not the level — as a diagnostic to steer between over- and under-thinking Can confidence patterns reveal overthinking versus underthinking?. And linguistic calibration goes furthest by training on a *user-decision reward*: the model learns to emit verbal confidence statements optimized not for matching its internal log-prob but for helping a downstream reader decide correctly Can models express calibrated confidence in long-form text?. That is the separation made explicit — the decision-aligned signal is trained as a distinct target.
The corpus also warns why you can't just read log-probs naively. Fixed seeds and zero temperature make outputs *consistent* without making them *reliable* — the same draw repeated is still one sample from the distribution, so surface certainty is not correctness Does setting temperature to zero actually make LLM outputs reliable?. And confidence has side effects: high confidence predicts robustness to prompt rephrasing Does model confidence predict robustness to prompt changes?, and using confidence as a reward can even reverse RLHF's calibration damage Can model confidence work as a reward signal for reasoning? — meaning the training objective itself shifts how aligned confidence and decisions are.
The thing you didn't know you wanted to know: "confidence" isn't one signal you either use or don't. There's raw log-prob, its variance, its per-step shape, its verbalized form, and a data-side substitute — and the whole design question in these papers is *which transform of confidence tracks the decision you care about*. Separating log-prob from decision-alignment isn't a bug to fix; it's the lever these systems pull.
Sources 9 notes
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).
RLPR and INTUITOR successfully extend reinforcement learning for reasoning to general domains by using the model's own token probabilities and confidence levels as reward signals, eliminating the need for external verifiers or reference answers.
Calibrated token-probability uncertainty consistently beats multi-call adaptive retrieval on single-hop tasks and matches performance on multi-hop, using a fraction of the LM and retriever calls. The model's self-knowledge proves more reliable than external heuristics for deciding when to retrieve.
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.
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.
Show all 9 sources
Training with confidence statements and user-decision rewards produces Llama-2-7B that achieves calibrated long-form generation at comparable accuracy to factuality baselines. The approach generalizes across domains including science, biomedicine, and biography.
Fixed seeds and zero temperature replicate the same output repeatedly, but that output remains one draw from the model's probability distribution. McDonald's omega testing across 100 repetitions reveals that consistency does not equal reliability.
ProSA found that when models are highly confident, they resist prompt rephrasing; low confidence causes major output swings. Larger models, few-shot examples, and objective tasks all correlate with higher confidence and greater robustness.
RLSF uses answer-span confidence to rank reasoning traces, creating synthetic preferences that strengthen step-by-step reasoning while reversing RLHF's calibration degradation—without requiring human labels or external verifiers.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Post-Training Large Language Models via Reinforcement Learning from Self-Feedback
- Understanding and Mitigating Premature Confidence for Better LLM Reasoning
- Local Coherence or Global Validity? Investigating RLVR Traces in Math Domains
- Reported Confidence in LLMs Tracks Commitment More Than Correctness
- RLPR: Extrapolating RLVR to General Domains without Verifiers
- Linguistic Calibration of Long-Form Generations
- AbstentionBench: Reasoning LLMs Fail on Unanswerable Questions
- Reasoning Theater: Disentangling Model Beliefs from Chain-of-Thought