INQUIRING LINE

An AI can be sure of itself and still make things up — so why doesn't better-tuned confidence fix that?

What makes confident hallucination a distinct problem from poor calibration?

This explores why a model being confidently wrong is a different kind of problem from a model whose confidence scores are simply off, and why fixing the second doesn't fix the first.


This explores why a model being confidently wrong is a different kind of problem from a model whose confidence scores are simply off. The corpus suggests calibration is a dial problem: tune how sure the model sounds so it matches how often it's right. Confident hallucination is what happens when the dial isn't connected to anything true. Nothing in the collection tests this head-on, for example by taking a well-calibrated model and showing it still hallucinates confidently. The case comes from several adjacent findings pointing the same way.

Calibration is a trainable skill. Can models express calibrated confidence in long-form text? shows a 7B model learning to attach faithful confidence statements to long-form text, at accuracy comparable to standard factuality baselines. But that only improves how the model reports on itself. The fabrication framing explains why reporting can't be enough: an LLM produces accurate and inaccurate text through the identical statistical process, so no internal step marks the wrong outputs as wrong (Should we call LLM errors hallucinations or fabrications?). That is why the same authors argue the fix is verification and use-case design around uncertainty, not better perception or grounding (Does calling LLM errors hallucinations point us toward the wrong fixes?).

The evidence that confidence misses the problem is concrete. QuCo-RAG looks at whether entities have ever appeared together in the training data. It catches hallucination risk even when the model is highly confident, because the root cause is an unseen combination and low confidence is only a downstream symptom (Can pretraining data statistics detect hallucinations better than model confidence?). Training can create the problem too. As a model masters new facts during fine-tuning, it hallucinates more about things it already knew (Does fine-tuning on new facts increase hallucination risk?). Neither cause shows up as a confidence reading. Even detection progress is shaky: ROUGE-based scoring inflates results by up to 45.9 percent, and simple length heuristics rival Semantic Entropy (Is hallucination detection progress real or just metric artifacts?).

The sharpest split is where calibration has nothing to measure. Asked to fuse two unrelated concepts, models build elaborate, defensible-looking frameworks instead of flagging that the fusion has no legitimate basis (Do language models evaluate semantic legitimacy when fusing concepts?). There's no false fact to score, only a failure to notice that the question shouldn't be answered. Repetition doesn't help either. Zero temperature gives the same output every time, but that output is still one draw from the distribution, so consistency isn't reliability (Does setting temperature to zero actually make LLM outputs reliable?).

That's why the practical answers sit outside the model. One formal result says any computable LLM must hallucinate on infinitely many inputs, and that self-correction can't remove this (Can any computable LLM truly avoid hallucinating?). ReAct-style loops, which check reasoning against real tools at each step, beat pure chain-of-thought by 10 to 34 points because they add an outside check the model lacks (Can interleaving reasoning with real-world feedback prevent hallucination?). Better calibration will shrink the problem, but it can't replace that check.


Sources 10 notes

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.

Should we call LLM errors hallucinations or fabrications?

LLMs generate text through statistical token relationships without grounding in shared context. Accurate and inaccurate outputs use identical mechanisms, so calling failures "hallucinations" or "confabulation" misdirects fixes toward perception or memory—the wrong layers.

Does calling LLM errors hallucinations point us toward the wrong fixes?

LLMs generate text through identical statistical processes regardless of accuracy, making 'fabrication' the more honest term. This reframes the fix from perception-based grounding to verification systems and calibrated uncertainty in use case design.

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

Does fine-tuning on new facts increase hallucination risk?

LLMs acquire unknown facts much slower than consistent examples during fine-tuning, but as they master these new facts, they progressively hallucinate more about existing knowledge. This overfitting suggests early-stopping or filtering unknown examples as safer practices.

Show all 10 sources
Is hallucination detection progress real or just metric artifacts?

ROUGE-based evaluation inflates detection capability by up to 45.9 percent compared to human-aligned metrics. Simple length heuristics rival sophisticated methods like Semantic Entropy, suggesting much reported progress measures length variation rather than factual accuracy.

Do language models evaluate semantic legitimacy when fusing concepts?

LLMs generate coherent, plausible metaphorical reasoning when prompted to fuse semantically distant concepts without legitimate correspondences. Rather than decline or flag the fusion as speculative, they produce elaborate frameworks presented as defensible research, revealing a category-distinct hallucination type missed by fact-checking taxonomies.

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 any computable LLM truly avoid hallucinating?

Three formal theorems prove that any computable LLM must hallucinate on infinitely many inputs, and internal mechanisms like self-correction cannot eliminate this mathematical constraint. External safeguards are therefore necessary, not optional.

Can interleaving reasoning with real-world feedback prevent hallucination?

ReAct demonstrates that alternating verbal reasoning with external tool queries (Wikipedia API, environment interaction) prevents error propagation by injecting real-world feedback at each step. On knowledge-intensive and interactive tasks, this approach outperforms pure chain-of-thought and reinforcement learning by 10-34% absolute accuracy.

Papers this line draws on 8

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