Inferensys

Glossary

Citation Recall

Citation Recall is the proportion of claims in a generated text that are supported by a cited source, measuring a model's ability to provide verifiable evidence for its statements.
MLOps engineer reviewing model serving infrastructure on laptop, container orchestration visible, technical workspace.
DEFINITION

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.

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.

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.

EVIDENCE GROUNDING

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.

01

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

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.

03

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

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.

05

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.

06

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.

CITATION RECALL

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.

GROUNDING EVALUATION COMPARISON

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.

FeatureCitation RecallCitation PrecisionAttribution ScoreFactual 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

Prasad Kumkar

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.