AI

What is Grounding Rate?

Grounding Rate is the percentage of an AI model's claims or statements that can be directly traced back to and verified against a specific source document, rather than generated purely from the model's internal, unverifiable memory. A high grounding rate means the system's answers are anchored to checkable evidence.

TL;DR

Grounding Rate measures what share of an AI system's claims can actually be traced back to a real source document, instead of coming purely from the model's own unverifiable memory.

Formula

Grounding Rate = (Claims Traceable to a Cited Source Document / Total Claims Made) × 100

Why It Matters

Grounding rate matters because it's a direct, checkable measure of how trustworthy an AI system's answers actually are, rather than a subjective read on whether the output sounds confident or well-written. A response can be fluent and convincing while still being ungrounded, and grounding rate is what catches that gap by checking claims against real source material instead of taking the model's word for it. It's especially critical for teams deploying AI in high-stakes domains, where an ungrounded claim isn't a minor inconvenience but a real liability. Tracking grounding rate also gives a team a concrete lever for improvement, since it points directly at whether the retrieval step is surfacing the right documents in the first place. Ignoring it means shipping a system whose reliability nobody has actually verified, only assumed.

Example

An AI assistant answers a question with five distinct factual claims, and four of them can be directly matched to sentences in the retrieved source documents, while one cannot be traced to any source. Grounding rate for that response is 4 divided by 5, which equals 80%. Systems built for high-stakes use cases, like legal or medical information, are often required to hit a much higher grounding rate threshold than a general-purpose chatbot, since ungrounded claims in those domains carry real consequences.

Frequently Asked Questions

  • Grounding rate measures the percentage of claims that are verifiably traceable to a source document. Hallucination rate measures the percentage of responses containing fabricated information. They're closely related but not simple opposites, since a response can contain some ungrounded claims without necessarily being counted as a full hallucination.

  • It's typically a specific retrieved document or passage the AI system had access to when generating its response, such as a company knowledge base article or a cited web page, not the model's general training data, which can't be checked or verified after the fact.

  • There's no single universal threshold, since acceptable levels depend heavily on the stakes of the use case. High-stakes domains like legal or medical information typically require a much higher grounding rate than a general-purpose chatbot answering casual questions.

  • It's usually evaluated by having human reviewers or a separate evaluation model check each factual claim in a set of responses against the retrieved source documents, then calculating what share of claims can be directly matched.

  • Improving the retrieval step so the system surfaces more relevant, complete source documents is usually the biggest lever, since a model can only ground its claims in documents it actually retrieved. Retrieval-augmented generation as an architecture exists specifically to raise grounding rate this way.