INQUIRING LINE

What makes uncertainty calibration harder than expanding knowledge?

This explores why teaching a model to know what it doesn't know (calibration) is a fundamentally different and harder problem than teaching it more facts (knowledge) — and what the corpus says about why.


This explores why teaching a model to *know what it doesn't know* is harder than just teaching it more. The short version from the corpus: adding knowledge fills a gap the model already has room for, but calibration asks the model to track its own boundaries — a metacognitive skill — and the way we train models actively works against it.

The cleanest statement of the gap is that hallucination isn't only a knowledge problem; models hallucinate because they lack awareness of their own knowledge boundaries, not just the knowledge itself Can models express uncertainty instead of just answering?. You can pour in more facts forever and never teach a model where its facts run out. Worse, the training signal usually points the wrong way: binary correctness rewards pay off confident guessing, because a confident wrong answer costs nothing extra compared to an unsure one. That's calibration degradation baked into the objective, and it only gets fixed when you add a scoring rule (the Brier score) that explicitly punishes confidence-without-accuracy Does binary reward training hurt model calibration?. The same RLHF-style pressure that sharpens answers quietly erodes the model's sense of its own reliability Can model confidence work as a reward signal for reasoning?.

There's also a measurement trap that makes calibration look solved when it isn't. Pinning temperature to zero gives you the same output every time, but that consistency is not reliability — it's one draw from the distribution, repeated. Genuine uncertainty lives in the spread of what the model *could* have said, which a deterministic setting hides rather than removes Does setting temperature to zero actually make LLM outputs reliable?. So the thing you most want to measure is exactly the thing the convenient setting conceals.

The encouraging counterweight is that when a model's confidence *is* well-calibrated, it becomes startlingly useful — and cheaply. Calibrated token-probability uncertainty beats elaborate adaptive-retrieval schemes at deciding when to go look something up, at a fraction of the compute Can simple uncertainty estimates beat complex adaptive retrieval?. Confidence can even stand in for an external verifier as a reward signal Can model confidence alone replace external answer verification?, and step-level confidence catches reasoning breakdowns that whole-trace averaging smooths over Does step-level confidence outperform global averaging for trace filtering?. The payoff for getting calibration right is large — which is part of why its difficulty matters.

And there's a deeper reason calibration resists training: knowing when to *not* answer is its own skill, and we rarely teach it. Reasoning models confronted with ill-posed or missing-premise questions don't disengage — they overthink, generating long answers to questions that have none, because optimization rewards producing reasoning steps and never rewards stopping Why do reasoning models overthink ill-posed questions?. Expanding knowledge is additive and the training loss cooperates; calibration is a judgment about the edges of that knowledge, the loss fights you, and the measurement tools obscure the target. That's the asymmetry.


Sources 8 notes

Can models express uncertainty instead of just answering?

Models hallucinate because they lack awareness of their own knowledge boundaries, not just knowledge itself. Expressing uncertainty calibrated to intrinsic uncertainty—faithful uncertainty—offers a metacognitive solution beyond the answer-or-abstain tradeoff.

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

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.

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.

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.

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.

Why do reasoning models overthink ill-posed questions?

Reasoning models generate redundant, lengthy responses to questions with missing premises while non-reasoning models correctly identify them as unanswerable. Training optimizes for producing reasoning steps but never teaches models when to disengage.

Next inquiring lines