Evaluates the factual correctness of long-form LLM-generated responses by decomposing them into atomic facts, detecting and refining incomplete or missing information, and verifying each fact against external web evidence. Use when the user wants to benchmark on Long-form LLM responses, or asks about evaluating this task. Reports Supported/Contradicted/Undecided classification accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill verifact-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Verifact Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-verifact-eval)More formats (shields.io, HTML) on the badges page.
---
name: verifact-eval
description: Evaluates the factual correctness of long-form LLM-generated responses by decomposing them into atomic facts, detecting and refining incomplete or missing information, and verifying each fact against external web evidence. Use when the user wants to benchmark on Long-form LLM responses, or asks about evaluating this task. Reports Supported/Contradicted/Undecided classification accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2505.09701
bibtex_key: firstauthor2025verifact
confidence: medium
---
# verifact-eval
> VeriFact: Enhancing Long-Form Factuality Evaluation with Refined Fact Extraction and Reference Facts — First Author et al. (2025) (arXiv:2505.09701, 2025)
## What this evaluates
Evaluates the factual correctness of long-form LLM-generated responses by decomposing them into atomic facts, detecting and refining incomplete or missing information, and verifying each fact against external web evidence.
## Datasets
- **Long-form LLM responses** — total ?; splits: test (-1)
## Metrics
- `Supported/Contradicted/Undecided classification accuracy` **(primary)** — range: [0, 1]
- Proportion of facts correctly classified into one of three categories (Supported, Contradicted, Undecided) relative to human-annotated ground truth. Calculated as correct predictions divided by total facts evaluated.
## Input / output format
**Input**: A long-form LLM response, which is algorithmically decomposed into atomic facts. For verification, each fact is paired with retrieved web search snippets serving as evidence.
**Output**: Per fact: a categorical label from the set {Supported, Contradicted, Undecided}.
## Scoring recipe
```python
def score(predictions, gold):
correct = sum(1 for p, g in zip(predictions, gold) if p == g)
return correct / len(predictions)
```
## Common pitfalls
- The pipeline intentionally prioritizes recall over precision during the incomplete/missing fact detection step, retaining false positives to avoid missing errors.
- Verification relies on Google Search API snippets, which may be noisy, incomplete, or fail to cover niche claims.
- Decontextualization and refinement steps may inadvertently alter the original semantic meaning if the LLM fails to preserve contextual dependencies.
## Evidence (verbatim from paper)
> We then adopt the design improvements of VERIFY Bayat et al. ([2025]), using Llama 3.3-70B to classify the fact as Supported, Contradicted, or Undecided based on the gathered evidence.
## Citation
```bibtex
@misc{firstauthor2025verifact,
title={VeriFact: Enhancing Long-Form Factuality Evaluation with Refined Fact Extraction and Reference Facts},
author={First Author et al. (2025)},
year={2025},
note={arXiv:2505.09701}
}
```
- arXiv: 2505.09701

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!