Citation Recall is the ratio of generated claims that are correctly supported by a cited source to the total number of claims in a model's output. It measures the model's ability to provide evidence for the statements it makes, distinguishing between a model that can retrieve sources and one that actually grounds its assertions in them.
Glossary
Citation Recall

What is Citation Recall?
Citation Recall is a precision metric that quantifies the proportion of generated claims a model successfully supports with a correct citation, directly measuring its ability to provide verifiable evidence.
A low Citation Recall score indicates a model is making unsupported assertions, a primary vector for hallucination. It is calculated alongside Citation Precision to form a complete Attribution Score, ensuring that not only are claims cited, but the citations are relevant and correct.
Key Characteristics of Citation Recall
Citation Recall measures the completeness of a model's evidence provision. It quantifies the proportion of generated claims that are backed by a cited source, revealing how thoroughly the system supports its own assertions.
Core Definition and Formula
Citation Recall is the ratio of cited claims to total verifiable claims in a generated text. It answers: 'Of all the factual statements made, how many did the model attempt to support with a reference?'
- Formula:
Number of Claims with a Citation / Total Number of Claims - A score of 1.0 means every factual assertion has a corresponding citation.
- A low score indicates the model is making unsupported statements, a primary vector for hallucination.
Distinction from Citation Precision
Citation Recall is often paired with Citation Precision, but they measure different things:
- Citation Recall: Are all claims cited? (Completeness of evidence)
- Citation Precision: Are the provided citations actually relevant and supportive? (Correctness of evidence)
A model can have high recall (citing everything) but low precision (citing irrelevant sources). The Knowledge F1 score is the harmonic mean of these two metrics, providing a balanced view of citation quality.
Role in RAG System Evaluation
In Retrieval-Augmented Generation (RAG) pipelines, Citation Recall is a critical diagnostic metric. It directly measures the system's ability to ground its output in the retrieved context.
- A drop in recall often signals a failure in the retrieval step or a model ignoring the provided documents.
- It is a key component of benchmarks like RAGTruth, which evaluates hallucination at the passage and word level.
- Engineers use recall to tune retrieval hyperparameters and prompt instructions to force evidence-backed generation.
Relationship to Factual Recall
While related, Citation Recall and Factual Recall are distinct metrics:
- Citation Recall: Measures the presence of a reference link, regardless of whether the claim itself is true.
- Factual Recall: Measures the proportion of true facts from a source document that the model successfully included in its output.
A model can achieve perfect Citation Recall by citing a source for every sentence, yet have poor Factual Recall if it misrepresents what the source actually says. Both are needed for a complete faithfulness assessment.
Automated Measurement with NLI
Modern evaluation frameworks automate Citation Recall measurement using Natural Language Inference (NLI) models:
- The generated text is decomposed into atomic claims.
- Each claim is paired with its cited source segment.
- An NLI model classifies the relationship as entailment, contradiction, or neutral.
- Only entailed claims count toward both recall and precision.
Tools like FActScore and SelfCheckGPT operationalize this process for large-scale, human-aligned evaluation without manual review.
Impact on Hallucination Risk
Citation Recall is inversely correlated with hallucination rate. A low recall score is a leading indicator of systemic factual errors:
- Entity-Level Hallucinations: Invented names or numbers often appear in uncited passages.
- Relation-Level Errors: False connections between concepts proliferate when the model is not forced to anchor claims.
- Critical Error Rate: In high-stakes domains like medicine or finance, a recall below 1.0 is unacceptable, as any unsupported claim could cause direct harm.
Implementing Guardrails like NeMo can enforce a minimum recall threshold in production systems.
Frequently Asked Questions
Explore the critical metrics and methodologies for verifying that AI-generated claims are properly supported by cited evidence, ensuring factual grounding in enterprise applications.
Citation Recall is the proportion of generated claims in a model's output that are supported by a cited source, measuring the model's ability to provide evidence for the statements it makes. It is calculated by dividing the number of claims that have a corresponding, correct citation by the total number of verifiable claims in the output. For example, if a model generates 10 factual assertions but only provides accurate citations for 7 of them, the Citation Recall is 70%. This metric is critical in Retrieval-Augmented Generation (RAG) systems where every claim should be traceable to a source document. Unlike Factual Recall, which measures completeness against a ground-truth source, Citation Recall specifically evaluates the model's self-attribution behavior—whether it can correctly link its own statements to the evidence it claims to have used. A high Citation Recall score indicates that the model is not only accurate but also transparent about its sourcing, which is essential for auditability in regulated industries like legal tech and healthcare.
Citation Recall vs. Related Metrics
A comparative analysis of Citation Recall against other key metrics used to evaluate the factual grounding and attribution accuracy of language model outputs.
| Feature | Citation Recall | Citation Precision | Attribution Score | Factual Recall |
|---|---|---|---|---|
Primary Focus | Completeness of evidence | Correctness of evidence | Overall link quality | Completeness of facts |
Core Question | Are claims supported by a citation? | Do citations support the claim? | Is the right source cited? | Are all source facts captured? |
Measurement Type | Proportion of claims cited | Proportion of citations correct | Composite F1 of linking | Proportion of facts extracted |
False Positive Risk | Low | High | Medium | Low |
False Negative Risk | High | Low | Medium | High |
Primary Use Case | RAG system auditing | Source relevance filtering | End-to-end attribution | Summarization completeness |
Dependency | Requires explicit citations | Requires explicit citations | Requires explicit citations | Requires ground-truth source |
Human Alignment | High | High | Very High | High |
Enabling Efficiency, Speed & Accuracy
Intelligent Analysis, Decision & Execution
We build AI systems for teams that need search across company data, workflow automation across tools, or AI features inside products and internal software.
Talk to Us
Search across company data
Give teams answers from docs, tickets, runbooks, and product data with sources and permissions.
Useful when people spend too long searching or get different answers from different systems.

Automate internal workflows
Use AI to route work, draft outputs, trigger actions, and keep approvals and logs in place.
Useful when repetitive work moves across multiple tools and teams.

Add AI to products and internal tools
Build assistants, guided actions, or decision support into the software your team or customers already use.
Useful when AI needs to be part of the product, not a separate tool.
Related Terms
Core metrics and methodologies for evaluating the factual grounding and evidentiary support of AI-generated claims.
Citation Precision
The complementary metric to Citation Recall, measuring the relevance and correctness of provided citations. While recall tracks whether claims have any cited source, precision evaluates whether the cited source actually supports the specific claim.
- High precision, low recall: Model cites sparingly but accurately
- Low precision, high recall: Model cites aggressively but often irrelevantly
- Both metrics together form the Attribution F1 score
Attribution Score
A composite evaluation metric that determines if a model can correctly link a generated claim to the specific segment of a source document that supports it. Combines Citation Recall and Citation Precision into a unified measure of evidentiary integrity.
- Measures end-to-end attribution quality
- Critical for Retrieval-Augmented Generation (RAG) systems
- Used in benchmarks like RAGTruth for word-level and passage-level evaluation
FActScore
A human-aligned evaluation metric that breaks long-form generations into atomic facts and verifies each against a trusted knowledge base like Wikipedia. Calculates the percentage of supported facts in a generation.
- Developed by researchers at the University of Washington and Meta AI
- Addresses the limitation of single-sentence evaluation for long-form text
- Provides granular, per-fact verification rather than holistic scoring
NLI-Based Evaluation
A method for assessing factual accuracy by framing the relationship between a source text and a generated hypothesis as a Natural Language Inference task. Each claim is classified as:
- Entailment: The source logically supports the claim
- Contradiction: The source refutes the claim
- Neutral: The source provides no information about the claim
Forms the backbone of automated faithfulness metrics like ANLI and SummaC.
Faithfulness Metric
An automated evaluation score that determines if a generated summary or response can be logically deduced from the input source without introducing extraneous information. Often implemented using NLI models.
- Distinct from factual accuracy: a statement can be factually true but unfaithful if not grounded in the provided source
- Critical for abstractive summarization and RAG quality assurance
- Measured by tools like SummaC and QuestEval
Knowledge F1
A composite metric calculating the harmonic mean between the precision and recall of factual knowledge units extracted by a model. Balances exactness and completeness of information retrieval.
- Factual Precision: Ratio of correct generated facts to total generated facts
- Factual Recall: Ratio of correct generated facts to total facts in the ground-truth source
- Provides a single, balanced score for knowledge extraction quality

About the author
Prasad Kumkar
CEO & MD, Inference Systems
Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.
His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.
Partnered with leading AI, data, and software stack.
How We Work
Custom AI workflows for your Business
One-fit-all AI don't work for modern businesses. At Inferensys, we aim to understand your business & custom requirements; which we use to define most efficient agentic workflows, the data, and the tools for your business.
01
Review the use case
We understand the task, the users, and where AI can actually help.
Read more02
Pick the right approach
We define what needs search, automation, or product integration.
Read more03
Build the first useful version
We implement the part that proves the value first.
Read more04
Improve from there
We add the checks and visibility needed to keep it useful.
Read moreThe first call is a practical review of your use case and the right next step.
Talk to Us