Initial response generation
The baseline language model generated fluent and contextually relevant answers for questions from both benchmark datasets. However, a detailed examination revealed unsupported and factually inaccurate statements in several responses. On the TruthfulQA dataset, the baseline system exhibited a hallucination rate of 28%, while a hallucination rate of 26% was observed on the FEVER dataset. These findings confirmed that direct language generation alone was insufficient for applications requiring high factual reliability and established the baseline condition against which all subsequent verification procedures were compared.
Claim extraction
The claim extraction procedure successfully decomposed generated responses into independently verifiable factual units. Responses from TruthfulQA contained an average of 3.2 atomic claims, while FEVER samples generally consisted of a single claim. The decomposition process isolated factual assertions without introducing additional information, allowing each statement to be evaluated separately. This observation supported the hypothesis that claim-level verification provides greater precision than evaluating entire responses as a single unit.
Independent reference construction
Independent references were generated for each extracted claim using a separate reasoning process conditioned only on the original query. The generated references provided concise factual descriptions that were sufficiently distinct from the original responses to serve as independent verification sources. The reference-generation process was isolated from the initial response to avoid directly conditioning the factual reference on the model’s earlier output. This separation was intended to reduce potential confirmation bias and provide a controlled basis for subsequent claim-level verification; the study does not independently quantify the extent of this effect. The successful generation of independent references supported the proposed design principle of separating knowledge recall from response generation.
Natural language inference verification
The NLI verification stage effectively classified claim-reference pairs into entailment, contradiction, and neutral categories. Contradicted claims consistently received negative verification scores, whereas factually supported claims received positive scores. Neutral classifications were assigned to claims for which insufficient supporting evidence was available. This behavior demonstrated that semantic inference could reliably identify unsupported factual statements and provided the evidence required for targeted correction. Compared with a simple consistency-checking strategy, NLI verification reduced the hallucination rate from 20% to 15%, indicating improved detection capability.
Adaptive statistical thresholding
The application of adaptive statistical thresholding further improved verification performance by dynamically adjusting decision boundaries based on the confidence score distribution of each response. Threshold sensitivity analysis demonstrated that performance improved as the threshold parameter increased from 0.3 to 0.7. At a sensitivity value of 0.7, the framework achieved an accuracy of 0.87 while reducing hallucinations to 9% (Figure 2). The complete sensitivity analysis results for the evaluated values of k are provided in Supplementary Table 2. Increasing the threshold beyond this point yielded only minor gains in accuracy while increasing latency. These observations supported the hypothesis that adaptive thresholds are more effective than fixed decision boundaries for handling varying confidence distributions across responses.
The adaptive threshold also reflects the variability of confidence scores within each response. Responses with highly consistent verification scores produce a smaller standard deviation, resulting in a more selective decision boundary. In contrast, responses containing claims with heterogeneous confidence values yield a larger standard deviation, leading to a broader acceptance region and reducing unnecessary corrections for uncertain claims. Although this adaptive behavior cannot eliminate every false positive or false negative, it enables the decision boundary to respond to the uncertainty characteristics of each response instead of applying a uniform criterion across all inputs.
Selective claim correction and response assembly
Only claims identified as contradictory were submitted for correction, while supported and neutral claims were retained unchanged. This selective correction strategy minimized unnecessary regeneration and preserved the original structure of the response. Following correction and response reconstruction, the hallucination rate on TruthfulQA decreased from 28% to 9%, representing a relative reduction of 67.9%. Similar improvements were observed on FEVER, where hallucinations decreased from 26% to 10%. Accuracy and hallucination-rate comparisons across the evaluated configurations are presented in Figures 3 and 4, respectively.
Performance evaluation
Comparative evaluation showed that the proposed framework achieved the highest overall performance among all tested methods. On TruthfulQA, the framework achieved an accuracy of 0.87 and an F1 score of 0.85, outperforming both fixed-threshold verification and self-consistency-based approaches (Table 2, Figures 3 and 4). On FEVER, the framework achieved an accuracy of 0.89 and an F1 score of 0.87 (Table 3, Figures 3 and 4). The incremental contribution of the framework components is examined through the ablation analysis presented in Table 4. These improvements confirmed that combining claim-level verification with adaptive statistical decision-making enhanced factual reliability across multiple datasets. Hallucination-detection accuracy for SelfCheckGPT, FActScore, and the proposed framework is compared in Figure 5.
Latency analysis
The complete verification pipeline maintained low computational overhead. The average response time increased from 820 ms for the baseline model to 980 ms for the full framework, representing only a modest increase in processing time (Table 5). Response generation accounted for most of the total latency, while verification and correction stages contributed relatively little additional overhead. The stage-level processing-time breakdown is provided in Supplementary Table 3. Compared with retrieval-based verification systems, which required approximately 1600 ms per query, the proposed framework achieved substantially lower latency while maintaining comparable factual accuracy. These findings supported the hypothesis that hallucination reduction can be achieved without sacrificing real-time usability.
Because response generation relies on a cloud-based language model, individual latency measurements are subject to fluctuations due to network conditions and server-side scheduling, rather than to a deterministic execution time. Repeated measurements were therefore used to obtain representative average values, reducing the influence of transient execution variability while preserving relative comparisons among the evaluated methods. Latency values are reported as mean execution times across repeated experimental runs. Individual per-run latency values were not retained; therefore, post hoc calculation of variance, confidence intervals, or other measures of variability were not possible. Accordingly, the latency values and the speed–accuracy comparison in Figure 6 are presented as point estimates without error bars.
To conclude, the results demonstrated that combining claim extraction, independent reference generation, Natural Language Inference verification, adaptive statistical thresholding, and selective correction improved the factual reliability of large language model outputs. The framework reduced the hallucination rate from 28% to 9% on TruthfulQA and from 26% to 10% on FEVER. The results indicate that adaptive claim-level verification improved factual-reliability metrics while limiting additional response latency under the evaluated conditions
Data Availability
The datasets analyzed in this study are publicly available through their respective official sources. The manuscript provides the dataset information, model configurations, and methodological details necessary to support replication of the described analyses. Processed evaluation data and supplementary results generated during the study are provided in the Supplementary Files.

Figure 1: Workflow of the adaptive claim-verification framework. An initial LLM-generated response is decomposed into factual claims, followed by independent reference generation, NLI-based verification, confidence scoring, and statistical thresholding. Claims meeting the acceptance criterion are retained, whereas claims meeting the correction criterion undergo targeted correction before final response assembly. Please click here to view a larger version of this figure.

Figure 2: Effect of the sensitivity parameter (k) on verification accuracy. Accuracy on TruthfulQA and FEVER at k values of 0.3, 0.5, 0.7, and 1.0. Accuracy increased with k on both datasets, with k = 0.7 selected for the primary evaluation. Please click here to view a larger version of this figure.

Figure 3: Accuracy comparison across verification methods. Accuracy of the baseline LLM, NLI-based verification, and the proposed adaptive verification framework on TruthfulQA and FEVER. Please click here to view a larger version of this figure.

Figure 4: Hallucination-rate comparison across verification methods. Hallucination rates for the baseline LLM, NLI-based verification, and the proposed framework on TruthfulQA and FEVER. The proposed framework reduced the rate from 28% to 9% on TruthfulQA and from 26% to 10% on FEVER. Please click here to view a larger version of this figure.

Figure 5: Hallucination-detection accuracy across methods. Detection accuracy of SelfCheckGPT, FActScore, and the proposed framework on TruthfulQA and FEVER. Please click here to view a larger version of this figure.

Figure 6: Response-time and accuracy trade-off across verification methods. Relationship between response latency and accuracy for the evaluated methods on TruthfulQA and FEVER, illustrating the performance–latency trade-off associated with the proposed framework and comparator approaches. Please click here to view a larger version of this figure.
| Dataset | Samples Used | Domains | Avg. Response Length (tokens) | Baseline LLM Hallucination Rate |
| TruthfulQA | 817 | 38 (science, history, law, etc.) | 42 | 28% |
| FEVER | 1,000 | General factual claims | 18 | 26% |
Table 1: Benchmark dataset characteristics. Summary of the TruthfulQA and FEVER datasets used for framework development and evaluation, including sample numbers, baseline accuracy, baseline hallucination rate, and average claims per sample.
| Method | Accuracy | Precision | Recall | F1 Score | Hallucination % |
| Baseline LLM (Single Inference) | 0.72 | 0.71 | 0.69 | 0.7 | 28% |
| NLI-Based Verification (Fixed Threshold) | 0.82 | 0.815 | 0.785 | 0.8 | 15% |
| SelfCheckGPT | 0.76 | 0.755 | 0.725 | 0.74 | 22% |
| FActScore | 0.85 | 0.8425 | 0.8175 | 0.83 | 11% |
| Proposed Framework (Statistical Threshold) | 0.87 | 0.86 | 0.84 | 0.85 | 9% |
Table 2: Performance comparison on TruthfulQA. Accuracy, precision, recall, F1 score, and hallucination rate for the baseline LLM, SelfCheckGPT, FActScore, NLI verification, and the proposed framework.
| Method | Accuracy | Precision | Recall | F1 Score | Hallucination % |
| SelfCheckGPT | 0.78 | — | — | — | — |
| FActScore | 0.87 | — | — | — | — |
| Baseline LLM† | 0.74 | 0.73 | 0.71 | 0.72 | 26% |
| NLI-Based Verification (Fixed Threshold) | 0.83 | 0.8225 | 0.7975 | 0.81 | 14% |
| Proposed Framework (Statistical Threshold) | 0.89 | 0.8775 | 0.8625 | 0.87 | 10% |
Table 3: Performance comparison on FEVER. Accuracy, precision, recall, F1 score, and hallucination rate for the baseline LLM, SelfCheckGPT, FActScore, NLI verification, and the proposed framework.
| Configuration | Accuracy | Precision | Recall | F1 (added) | Hallucination Rate |
| Baseline Language Model | 0.72 | 0.71 | 0.69 | 0.7 | 28% |
| Baseline + Secondary Check (Without NLI) | 0.78 | 0.7725 | 0.7475 | 0.76* | 20% |
| Baseline + NLI-Based Verification (Fixed Threshold) | 0.82 | 0.815 | 0.785 | 0.8 | 15% |
| Baseline + Statistical Decision Module (Full) | 0.87 | 0.86 | 0.84 | 0.85 | 9% |
Table 4: Ablation analysis of framework components. Changes in accuracy, F1 score, and hallucination rate following sequential incorporation of secondary validation, NLI verification, and adaptive statistical thresholding.
| Method | Mean Response Time (ms) |
| Baseline LLM (Single Generation) | 820 |
| Self-Validation Mechanism | 910 |
| Proposed Statistical Framework | 980 |
| Retrieval-Augmented Verification (RAG) | 1600 |
Table 5: Response latency across verification methods. Mean response time and additional latency relative to the baseline LLM for Self-Validation, the proposed framework, and retrieval-augmented verification.
Supplementary Table 1: Comparison of hallucination-verification approaches. Comparison of the proposed framework with existing methods in terms of external retrieval, claim-level verification, adaptive thresholding, and latency-efficient processing.Please click here to download this file.
Supplementary Table 2: Sensitivity analysis of the threshold parameter (k). Accuracy, precision, recall, F1 score, and hallucination rate were obtained at threshold parameter values of 0.3, 0.5, 0.7, and 1.0. A value of k = 0.7 was used for the primary evaluation.Please click here to download this file.
Supplementary Table 3: Processing time across stages of the verification pipeline. Mean execution time and percentage contribution of initial response generation, claim decomposition, reference generation, NLI inference, and selective correction to the total response time.Please click here to download this file.
Supplementary Table 4: Distribution of errors identified during verification. Number and percentage of false negatives, false positives, and correction errors, together with the primary hallucination categories associated with each error type.Please click here to download this file.