INQUIRING LINE

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

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).

Can model confidence alone replace external answer verification?

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.

Can simple uncertainty estimates beat complex adaptive retrieval?

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.

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 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.

Show all 9 sources
Can models express calibrated confidence in long-form text?

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.

Does setting temperature to zero actually make LLM outputs reliable?

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.

Does model confidence predict robustness to prompt changes?

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.

Can model confidence work as a reward signal for reasoning?

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.

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 research analyst. Question, still open: can log-probability confidence be separated from decision-aligned signals — the number a model assigns a token versus a signal that actually tracks whether to retrieve, trust, or stop reasoning?

What a curated library found — and when (dated claims, not current truth). These span ~2024–2026:
- Confidence and correctness diverge: a data-side cue (entity co-occurrence in pretraining) can flag hallucination risk even when the model is highly confident — so raw log-prob is not decision-aligned.
- When calibrated, token probability becomes the decision itself: RLPR uses the model's own probability of a correct answer as reward, dropping external verifiers (~2025).
- Calibrated token-probability uncertainty beats multi-call adaptive-retrieval heuristics at deciding when to look something up, at lower compute (~2025).
- Which transform matters: step-level confidence catches failures global averaging hides; ReBalance reads confidence variance/overconfidence — not the level — to steer over- vs under-thinking (~2026).
- Linguistic calibration trains verbal confidence on a user-decision reward, making the decision-aligned signal an explicit training target (~2024).

Anchor papers (verify; mind their dates): Linguistic Calibration of Long-Form Generations (2024, arXiv:2404.00474); Adaptive Retrieval Without Self-Knowledge? (2025, arXiv:2501.12835); RLPR (2025, arXiv:2506.18254); Deep Think with Confidence (2025, arXiv:2508.15260).

Your task: (1) RE-TEST EACH finding above — have newer models, training/reward methods, tooling, orchestration (memory, multi-agent), or evaluation RELAXED or OVERTURNED it? Separate the durable question from the perishable limit; cite what resolved it and say where a constraint still holds. (2) Surface the strongest contradicting or superseding work from the last ~6 months. (3) Propose 2 research questions assuming the regime has moved.

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