An AI hallucination rate is meant to answer a simple question — how often does a model state something false with the same confidence it uses for something true — but in practice the number is a product of whichever benchmark, task, and grading method produced it. Two models can report very different "hallucination rates" and still be roughly equally reliable in your actual use case, because the tests behind those numbers were not measuring the same thing.
What changed in 2026
- Task-specific hallucination benchmarks replaced single blended scores on most serious model cards, after it became clear that a single aggregate number hid huge variance between, say, summarization and open-ended factual recall.
- Grounded generation benchmarks became standard alongside closed-book ones, explicitly separating "how often does the model make things up from memory" from "how often does it misstate something it was given a source for."
- Automated fact-checking graders improved but are still imperfect, meaning published rates depend partly on the quality of the grading model itself, not just the model being tested.
- Regulatory and enterprise pressure pushed vendors toward disclosing methodology, not just a headline percentage, though disclosure quality still varies widely across vendors.
How hallucination rate is actually measured
Most benchmarks work by giving a model a set of prompts, generating responses, and then checking each factual claim against a ground truth source — either a curated dataset, a retrieval corpus, or human annotators. The "rate" is typically the fraction of checkable claims (or full responses) judged unsupported or false. The catch is in the details: what counts as a checkable claim, how strict the grading is about partial correctness, and whether the model was given source material to work from all change the resulting number substantially.
This is why comparing a hallucination rate from a closed-book trivia benchmark to one from a retrieval-augmented summarization benchmark tells you almost nothing about relative reliability — they are testing different failure modes. If you want the mitigation side of this problem, see our guide to hallucination mitigation.
Hallucination rate by task type
| Task type |
Typical hallucination pattern |
Why |
| Closed-book factual QA |
Highest rates |
Model relies entirely on parametric memory, no way to verify |
| Open-ended long-form generation |
High, hard to grade |
Many checkable claims per response, some vague or unfalsifiable |
| Retrieval-augmented / grounded QA |
Much lower |
Model can cite from provided source text instead of recalling |
| Summarization of a given document |
Lower, but not zero |
Model can still add unsupported details or misattribute claims |
| Code generation |
Different failure mode |
"Hallucination" often means inventing nonexistent APIs, not false facts |
Why grounding lowers the rate
Grounded generation — giving the model source documents and instructing it to answer only from them, ideally with citations — consistently produces lower hallucination rates than asking a model to answer from memory alone. This is not because the model becomes more honest; it is because the task changes from "recall a fact" to "locate and restate a fact," which is a much easier and more verifiable operation. See our deeper explainer on grounded generation for how this works mechanically.
Reading a vendor-reported rate
Before trusting a published hallucination percentage, check: what benchmark produced it, whether the task was grounded or closed-book, how "hallucination" was defined (any false claim, or only material ones), and who or what did the grading. A 2% rate on a grounded summarization benchmark and a 2% rate on open-ended factual QA are not the same claim about the model, even though they look identical on a spec sheet.
FAQ
Is a lower hallucination rate always better?
Generally yes for the task it was measured on, but a low rate on an easy, grounded benchmark tells you little about performance on a harder, closed-book task. Match the benchmark to your actual use case.
Can a model have a 0% hallucination rate?
Not reliably across open-ended tasks. Even well-grounded systems occasionally add unsupported details or misattribute claims; treat any advertised 0% figure as scoped to a narrow, likely favorable benchmark.
Does hallucination rate correlate with model size?
Loosely and inconsistently. Larger models often hallucinate less on recall-heavy tasks but are not immune, and some smaller, well-grounded systems outperform larger ungrounded ones on factuality.
How is hallucination rate different from an evaluation metric like accuracy?
Accuracy measures whether the final answer matches a target; hallucination rate specifically isolates unsupported or false claims, which can appear even inside an otherwise "correct" or plausible-sounding response.
Where to go next