arXiv:2609.08943v1 [cs.CL] 8 Sep 2026
Evaluating and Improving Evidence-Grounded Fact-Checking in LLMs via Multi-Round Evidence Ablation Xingyu Deng∗
Mingzi Cao∗
Nikolaos Aletras
University of Sheffield Sheffield, UK [email protected]
University of Sheffield Sheffield, UK [email protected]
University of Sheffield Sheffield, UK [email protected]
Xi Wang
Mark Stevenson
University of Sheffield Sheffield, UK [email protected]
University of Sheffield Sheffield, UK [email protected]
Abstract
1
Automatic fact-checking systems assess the veracity of claims given evidence from relevant documents. Large Language Models (LLMs) have demonstrated strong performance in fact-checking due to their general reasoning capabilities. However, it remains unclear whether they faithfully make use of the evidence provided to reach veracity judgments or rely on parametric knowledge. To investigate this, we introduce Fact-Ablated Evaluation (FAE), a new evaluation framework that iteratively ablates the cited evidence to assess whether LLMs revise their predictions accordingly. Our empirical results show that current off-the-shelf LLMs as fact-checking systems rely more on their parametric knowledge than on the evidence provided. To bridge this gap between prediction accuracy and evidence grounding, we propose REAL (Rigorous Evidence Ablation Learning), a training framework that promotes evidencedependent verification through counterfactual evidence supervision for the LLM-as-verifier models. Experiments on four fact-checking datasets across different domains demonstrate that models trained with REAL obtain superior evidence-dependent capabilities compared to standard fine-tuned models. Our findings highlight that strong fact-checking performance can still coexist with weak evidence dependency, while REAL encourages veracity predictions to remain more closely tied to the availability of supporting evidence.
Automated fact checking, the process of assessing the veracity of claims, acts as a safeguard against misinformation [21, 76]. Factchecking systems are expected not only to predict claim veracity labels, but also to retrieve and present supporting evidence from external knowledge sources such as textual documents and knowledge graphs [22, 76]. This evidence helps to explain algorithm decisions, which is particularly important in high-stakes domains, like public health or law, and supports the integration of fact-checking systems into human decision-making workflows [62]. The traditional approach to fact-checking involves a two-stage approach: (1) identification of evidence from a collection ranked by retrievers [6, 13, 23, 27, 39, 41, 70, 77] followed by (2) veracity prediction [22, 60, 76]. More recently, Large Language Models (LLMs) have demonstrated strong fact-checking performance through application of Retrieval-Augmented Generation (RAG) architectures [35] in which retrieved documents are used as additional context prior to veracity prediction [1, 35, 44, 50]. However, in RAG settings, LLMs can make use of both retrieved evidence and memorised knowledge when assessing claims, making it difficult to determine the source of their predictions. Since parametric knowledge can become outdated [7] or reflect inaccuracies introduced during training [11], reliance on such knowledge may affect the reliability of fact-checking decisions [12, 14, 32, 61, 63]. Strong performance may partly reflect prior exposure to relevant facts included in pretraining data, making it difficult to determine whether predictions are primarily supported by retrieved evidence or memorised knowledge [5, 16, 69]. Consequently, superior verification accuracy alone cannot reveal whether a verifier model truly depends on the provided evidence or merely recovers memorised knowledge. To ensure evidence-based fact-checking, verification decisions are expected to be grounded in the evidence cited as their justification. This expectation demands that the decision should be sensitive to changes in the cited evidence, especially when that evidence is no longer available. As shown in Figure 1, if a claim is supported by deterministic evidence (i.e., Sentence [1]), the verifier should no longer be able to confidently justify the same prediction once that evidence is removed. In practice, however, LLM-based verifiers often maintain the same decision by “hallucinating” alternative justifications (e.g., citing Sentence [7]) or without providing evidence. Standard fact-checking metrics [22, 60, 62, 76] fail to capture
CCS Concepts • Computing methodologies → Natural language processing.
Keywords Fact-Checking, Retrieval-Augmented Generation ACM Reference Format: Xingyu Deng, Mingzi Cao, Nikolaos Aletras, Xi Wang, and Mark Stevenson. 2026. Evaluating and Improving Evidence-Grounded Fact-Checking in LLMs via Multi-Round Evidence Ablation. In Proceedings of the 35th ACM International Conference on Information and Knowledge Management (CIKM ’26), November 07–11, 2026, Rome, Italy. ACM, New York, NY, USA, 12 pages. https://doi.org/10.1145/3799682.3841076
This work is licensed under a Creative Commons Attribution 4.0 International License. CIKM ’26, Rome, Italy © 2026 Copyright held by the owner/author(s). ACM ISBN 979-8-4007-2539-5/2026/11 https://doi.org/10.1145/3799682.3841076
Introduction
CIKM ’26, November 07–11, 2026, Rome, Italy
Xingyu Deng, Mingzi Cao, Nikolaos Aletras, Xi Wang, and Mark Stevenson Fact-Checking by LLM verifier
WIKIPEDIA Page
Short Prompt: Verify claim strictly against the information provided. Claim: Queen (band) is a British rock band that was formed in London.
[1] Queen are a British rock band that formed in London in 1970. [2] Their classic line-up was Freddie Mercury (lead vocals, piano), Brian May (lead guitar, vocals), Roger Taylor (drums, vocals), and John Deacon (bass guitar). .... [7] Mercury joined the band in 1970, suggested “Queen” as a new band name, and adopted his familiar stage name. .... [23]They were inducted into the Rock and Roll Hall of Fame in 2001
A. Standard fact checking with full-doc: Provided Context: Claim + Full-Doc [1-23]
Output: Prediction: SUPPORT Evidence: [1]
B. Removing true evidence in A: Provided Context: Claim + Sentences [2-23]
Output: Prediction: SUPPORT Evidence: [7]
C. Removing true evidence in A and cited evidence in B: Provided Context: Claim + Sentences [2-6] + [8-23]
Output: Prediction: SUPPORT Evidence: [ ]
Figure 1: Observed failure mode in FEVER dataset produced by LLM verifier (LLaMa3-8B-Instruct) this behaviour, as they assess label accuracy only once without testing the causal dependence between evidence and prediction. Therefore, evidence grounding requires counterfactual evaluation by observing whether the decision changes when its supporting evidence is ablated. To address this limitation, we introduce Fact Ablated Evaluation (FAE), a behavioural evaluation framework that measures the causal dependency between predictions and model-selected evidence through iterative counterfactual intervention. FAE evaluates LLM-based verifier grounding behaviour through three complementary metrics that quantify decision shifts across the entire ablation process. For claims initially labelled SUPPORT or REFUTE, an evidence-grounded verifier should immediately abstain (i.e., return NOT_ENOUGH_INFO) once the supporting evidence is ablated. However, we observe that current LLM-based verifiers stabilise at a non-zero decision plateau across ablations, indicating persistent reliance on parametric knowledge despite explicit control of evidence completeness. These observations suggest that current LLM-based fact-checking systems, despite achieving strong veracity prediction accuracy, do not necessarily learn to make predictions that remain dependent on the provided evidence. To promote truly evidence-grounded fact-checking, we further propose REAL (Rigorous Evidence Ablation Learning), a training framework for LLM-based verifiers. Rather than relying on off-theshelf LLMs [4, 9, 19, 30, 36, 40, 45, 48, 58, 59, 67, 68, 71, 74, 75, 78] and standard supervised fine-tuning (SFT) on claim-evidence pairs only [8, 34, 46, 52, 74], REAL introduces counterfactual supervision by training on paired inputs with and without supporting evidence. It enforces abstention when evidence is ablated, thus creating a causal dependency between evidence and verdict. This paper makes three main contributions: • We identify a failure mode in LLM-based fact-checking, where predictions remain stable when removing supporting evidence. • We propose Fact Ablated Evaluation (FAE), a behavioural evaluation framework that measures evidence dependence through progressive evidence ablation, and show that parametric knowledge contributes to this failure mode. • We introduce REAL, a training framework that uses counterfactual supervision and evidence enhancement to improve evidence grounding without sacrificing fact-checking performance.
2
Related Work
The tendency of LLMs to memorise data observed during training is now well-established [5, 16, 33, 69]. Consequently, the adoption of RAG for such applications has necessitated extensive research into LLM grounding and refusal mechanisms [18]. This work can be broadly categorised into three directions. First, regarding robustness to irrelevant or insufficient context, several studies investigate how LLMs manage situations where retrieved documents are nonrelevant or incomplete [31, 42, 56, 72]. They emphasise the model’s ability to “know when it doesn’t know” and abstain from answering to prevent hallucinations. Second, in terms of evaluation frameworks, new metrics and benchmarks have been proposed to diagnose retrieval and generation errors [49, 53], with a focus on measuring semantic consistency between answers and citations. Third, for methodological improvements, various adaptation and alignment strategies are developed to enhance grounding [25, 28, 73]. For instance, Song et al. [53] focus on aligning LLMs to abstain from answering under insufficient evidence, whereas Huang et al. [28] enhance verifiability by training models to ground claims in specific fine-grained textual evidence rather than coarse document identifiers. While these works share our motivation to reduce reliance on internal parametric knowledge, they primarily operate in generationcentric settings, such as question-answering. In such contexts, grounding is typically defined as the semantic alignment between a free-form response and its cited sources. Consequently, while some evaluation frameworks [24, 54] utilise fact-checking related principles, they still tend to simplify the task by treating REFUTE and NOT_ENOUGH_INFO into a single NON-SUPPORT category. In contrast, our work focuses on the task of fact-checking itself, which adopts a stricter formulation than generation-centric grounding by requiring granular labels and explicit causal dependency on evidence. Our work also differs from Akhtar et al. [2] who removed gold evidence to validate an evaluation metric, but this static approach cannot diagnose whether a model actually uses that evidence for its decision. Instead, we introduce a dynamic ablation process that ablates the model’s own predicted evidence. This allows us to characterise the causal dependency between the evidence a model selects and its final verdict, revealing when a model relies on parametric knowledge instead.
3 Background 3.1 Problem Statement Given a set of sentences (𝑆), a fact-checking system (𝐹𝐶) assess a claim (𝑐) and outputs a veracity label (𝑙 ∈ L) together with the supporting evidence sentences (𝐸 ⊆ 𝑆): 𝐹𝐶 (𝑐, 𝑆) → (𝑙, 𝐸).
(1)
𝐹𝐶 performs verification by maximising the joint probability of the target veracity label and the evidence subset: (𝑙, 𝐸) = arg max 𝑃 (𝑙, 𝐸 | 𝑐, 𝑆) 𝑙 ∈ L, 𝐸 ⊆𝑆
(2)
L = {SUPPORT, REFUTE, NOT_ENOUGH_INFO/NEI} is a commonly used a set veracity labels [22, 62, 76].
Evaluating and Improving Evidence-Grounded Fact-Checking in LLMs via Multi-Round Evidence Ablation
CIKM ’26, November 07–11, 2026, Rome, Italy
Fact Ablated Evaluation Ideal
Actual Claim
Refute
Round 0
Claim
Refute
Round 1
Claim
Claim
Claim
Not Enough Information
Refute
Refute
Round 2
Claim
Round 0
Not Enough Information
Round 1
Round 2
REAL: Rigorous Evidence Ablation Learning Origin Training Data
Enhancing Evidence Supervision
Enhanced Training Data
Evidence-Ablated Data
Claim: XXX
Claim: XXX
Evidence List:
Evidence List:
Predictions: Support/Refute
Predictions: Support/Refute
Predictions: Not Enough Info
Gold Evidence:
Gold Evidence:
Gold Evidence: Not applicable
Claim: XXX Evidence List:
Construct Data Pairs
Figure 2: Illustration of proposed evaluating framework FAE (Top) and training framework REAL (Bottom)
Fact-Checking System Evaluation
Existing evaluation protocols for fact-checking systems primarily assess two independent aspects: (1) whether a model predicts the correct veracity label supported by identified evidence, and (2) whether the predicted evidence set covers the gold evidence. (1) Veracity prediction is evaluated at the claim level, typically via two metrics [22, 51, 57, 64, 66, 76]: (i) Label Accuracy, which measures the correctness of the predicted label 𝑙 against the gold label 𝑙 ∗ . (ii) Label-Evidence Joint (Strict) Accuracy, which only credits a prediction if the veracity label is correct and at least one gold evidence sentence is correctly identified. (2) Evidence selection is usually evaluated by comparing the predicted evidence set 𝐸 against the annotated gold evidence 𝐸 ∗ from a global perspective [22, 57, 64, 66, 76]. Three standard retrieval metrics are reported: Precision, Recall, and F1 score. These metrics are calculated by measuring the overlap between the set of all predicted evidence sentences and the set of all gold evidence.
4 FAE: Fact Ablated Evaluation 4.1 Evidence Ablation Process To verify whether the model’s predictions are strictly grounded in the provided evidence, we introduce Fact Ablated Evaluation (FAE), which evaluates model behaviour under varying levels of evidence availability. Figure 2 (top) presents an overview of the FAE evaluation framework with an illustrative comparison between actual observations and the ideal performance of a fact-checking system. Given a claim 𝑐 and an evidence set 𝑆, 𝐹𝐶 produces a prediction (𝑙 (0) , 𝐸 (0) ), referred to as the round 0 predication. The evidence set is then ablated by removing the predicted evidence 𝐸 (0) : 𝑆 1 = 𝑆 \ 𝐸 (0) .
𝐹𝐶 then predicts the same claim 𝑐 again using 𝑆 1 to produce the round 1 prediction and then FAE updates the evidence set for round 2: (𝑙 (1) , 𝐸 (1) ), 𝑆 2 = 𝑆 1 \ 𝐸 (1) . This ablation process is repeated iteratively, dropping the predicted evidence 𝐸 (𝑟 ) following each round 𝑟 and re-evaluating 𝐹𝐶 with evidence set 𝑆 𝑟 \ 𝐸 (𝑟 ) in the next round. The ablation process is terminated after a fixed number of rounds 𝑅. The resulting sequence 𝑙 (0) , 𝑙 (1) , 𝑙 (2) , . . . 𝑙 (𝑟 ) captures how 𝐹𝐶 behaviour changes as cited evidence is progressively eliminated.
4.2
Ideal vs. Actual Trajectories