Factual Precision is the ratio of correctly generated factual statements to the total number of factual statements in a model's output, measuring the exactness of the information provided. It quantifies how many of the model's asserted facts are actually true, penalizing the inclusion of incorrect or fabricated details.
Glossary
Factual Precision

What is Factual Precision?
Factual precision is a critical metric in evaluating the trustworthiness of language model outputs, measuring the exactness of generated information against a verified source.
This metric is distinct from Factual Recall, which measures completeness. A high precision score indicates that when the model makes a declarative statement, it is highly likely to be correct, making it a crucial signal for Hallucination Risk Assessment in production systems. It is often calculated using NLI-Based Evaluation against a grounding corpus.
Factual Precision vs. Factual Recall
A comparative analysis of the two fundamental metrics used to evaluate the factual quality of language model outputs, distinguishing between exactness and completeness.
| Feature | Factual Precision | Factual Recall | Knowledge F1 |
|---|---|---|---|
Primary Question | Is the generated fact correct? | Did the model find all relevant facts? | What is the harmonic balance? |
Core Measurement | Exactness of output | Completeness of extraction | Composite accuracy |
Formula | True Positives / (True Positives + False Positives) | True Positives / (True Positives + False Negatives) | 2 * (Precision * Recall) / (Precision + Recall) |
Error Type Penalized | Hallucinations and fabricated facts | Omissions and missing context | Both hallucinations and omissions |
High Score Indicates | Output is trustworthy and verifiable | Output is comprehensive and thorough | Output is both accurate and complete |
Low Score Indicates | Output contains fabricated information | Output is missing critical source facts | Output fails on exactness or completeness |
Primary Use Case | Safety-critical applications (medical, legal) | Exhaustive summarization and research | General-purpose factual evaluation |
Relationship to Grounding | Directly measures grounding fidelity | Measures extraction coverage | Balances fidelity and coverage |
Key Characteristics of Factual Precision
Factual Precision is a strict metric measuring exactness, not completeness. It penalizes the injection of incorrect facts, distinguishing it from recall-oriented metrics like Factual Recall.
The Core Formula
Factual Precision is calculated as the ratio of correctly generated atomic facts to the total number of atomic facts present in the model's output.
- True Positives (TP): Correctly stated facts.
- False Positives (FP): Incorrectly stated or hallucinated facts.
- Formula:
Precision = TP / (TP + FP) - A score of 1.0 indicates zero hallucinations, but may mask poor recall.
Precision vs. Recall Trade-off
Factual Precision must be analyzed alongside Factual Recall to avoid metric gaming. A model can achieve perfect precision by being extremely terse.
- High Precision, Low Recall: The model says very little, but everything it says is correct (safe, but incomplete).
- High Recall, Low Precision: The model covers many facts but invents details (comprehensive, but untrustworthy).
- The harmonic mean is captured by the Knowledge F1 score.
Atomic Fact Decomposition
To calculate precision, long-form text must be broken into atomic facts—short, self-contained, verifiable statements.
- Example: "Apple Inc., founded by Steve Jobs in Cupertino, released the iPhone in 2007."
- Atom 1: Apple Inc. was founded by Steve Jobs.
- Atom 2: Apple Inc. was founded in Cupertino.
- Atom 3: Apple Inc. released the iPhone in 2007.
- Tools like FActScore automate this decomposition against Wikipedia.
Distinction from Faithfulness
Factual Precision is often confused with Faithfulness, but they measure different alignments.
- Factual Precision: Measures alignment with world knowledge or a verified knowledge base.
- Faithfulness: Measures alignment with a specific source document provided in the context.
- A statement can be faithful to a source document but factually imprecise if the source itself is wrong.
Entity-Level Precision
A critical sub-type of factual precision focuses specifically on named entities. This measures the model's ability to avoid inventing people, places, or organizations.
- Entity Error: Referring to "Tim Cook" as the CEO in 2010.
- Relation Error: Stating "Apple acquired Microsoft."
- Entity-Level Hallucination is often the most damaging type of error in enterprise settings, as it creates entirely fictional actors.
Evaluation Benchmarks
Several benchmarks specifically test factual precision by targeting common model failure modes.
- TruthfulQA: Tests resistance to generating common human misconceptions.
- FActScore: Verifies biographical generations against Wikipedia.
- HaluEval: Contains human-annotated hallucinated samples to test detection models.
- These benchmarks reveal that even high-accuracy models often have low precision on obscure facts.
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.
Frequently Asked Questions
Explore the core concepts behind measuring and improving the exactness of information in language model outputs, distinguishing between precision, recall, and the various metrics used for hallucination risk assessment.
Factual Precision is the ratio of correctly generated factual statements to the total number of factual statements in a model's output. It is calculated as Precision = True Positives / (True Positives + False Positives), where a true positive is a factually correct statement and a false positive is an incorrect statement (a hallucination). This metric focuses strictly on the exactness of the information provided, penalizing the model for introducing any fabricated details, regardless of how many true facts it omitted. It is a critical component of the composite Knowledge F1 score, which balances precision with Factual Recall to provide a holistic view of a model's factual reliability.
Related Terms
Explore the key metrics and methodologies used to evaluate and mitigate factual errors in language model outputs, forming the core of a robust hallucination risk assessment framework.
Faithfulness Metric
An automated evaluation score, often using Natural Language Inference (NLI), that determines if a generated summary or response can be logically deduced from the input source without introducing extraneous information. It measures entailment rather than just overlap.
- NLI-Based Evaluation: Classifies the source-hypothesis relationship as entailment, contradiction, or neutral
- FaithDial: A curated dataset where hallucinated responses have been corrected to be faithful to the knowledge source
- Use Case: Essential for evaluating summarization and RAG pipelines
FActScore
A human-aligned evaluation metric that breaks a long-form generation into atomic facts and verifies each against a trusted knowledge base like Wikipedia. It calculates the percentage of supported facts, providing a granular view of factual precision.
- Process: Decompose text → Extract atomic claims → Verify each claim independently
- Output: A ratio of supported facts to total facts
- Advantage: Offers a more nuanced breakdown than holistic scoring methods
Uncertainty Quantification (UQ)
The field of machine learning focused on estimating the confidence bounds of a model's predictions to identify when the model is likely to be wrong. It distinguishes between epistemic uncertainty (reducible, from lack of knowledge) and aleatoric uncertainty (irreducible, from data noise).
- Semantic Entropy: Clusters semantically equivalent outputs before calculating entropy to measure true uncertainty
- Conformal Prediction: A model-agnostic framework that generates prediction sets with a mathematical guarantee of containing the true output
- Deep Ensemble Uncertainty: Measures variance across multiple independently trained models
Chain-of-Verification (CoVe)
A prompting technique where an LLM first drafts a response, then generates a series of independent verification questions to fact-check its own work, and finally produces a corrected, verified answer. It is a zero-resource method for improving factual precision.
- Step 1: Generate baseline response
- Step 2: Plan verification questions based on the draft
- Step 3: Execute verifications independently
- Step 4: Produce the final, corrected output
Attribution Score
A metric evaluating whether a model can correctly link a generated claim to the specific segment of a source document that supports it. It is decomposed into Citation Recall (proportion of claims with supporting citations) and Citation Precision (proportion of citations that are relevant).
- RAGTruth: A specialized benchmark for evaluating hallucination at the passage and word level in RAG systems
- Importance: Directly measures the verifiability of AI-generated content
- Application: Critical for legal and medical AI systems requiring audit trails

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