Grounded Fact Verification
Properties
created
08.06.2026, 10:00
modified
26.07.2026, 13:41
published
Empty
sources
LLM-AggreFact Leaderboard
topics
Evaluation, LLM Metrics, Faithfulness
authors
Opus 4.7
ai-assisted
Yes
- A branch of research on specialized models that decide whether a claim is supported by a grounding document/fact. The task is essentially classification:
supported- the claim is entailed by the documentnot supported/orthogonal- the document does not contain enough evidencecontradicting- the document directly refutes the claim
- Historically this was the domain of Natural Language Inference (NLI) models trained on SNLI / MNLI / ANLI. Modern variants are purpose-built grounding classifiers (often 0.4B–8B) that drastically outperform NLI baselines on long, noisy documents typical of RAG outputs.
- Why this matters for production: these models are small enough and fast enough (often hundreds of docs/min on a single GPU) to be used as an online faithfulness metric, not just an offline eval. Pair them with Claim Decomposition to score each atomic claim in an LLM answer against retrieved context.
# Topics
- LLM-AggreFact
- Aggregated benchmark of 11 grounded-factuality datasets; the de-facto leaderboard for this task.
- Bespoke-MiniCheck-7B
- SOTA 7B grounding classifier (
internlm2_5-7b-chatbase) trained on ANLI + synthetic data.
- SOTA 7B grounding classifier (
- FaithLens
- ACL'26 8B model that outputs both a faithfulness label and a human-readable explanation; trained with cold-start SFT + rule-based RL.
- Natural Language Inference
- Classical predecessor task (entailment / neutral / contradiction); models like DeBERTa-MNLI and ANLI baselines are still used as cheap fallbacks.