SURE-RAG: Sufficiency and Uncertainty-Aware Evidence Verification for Selective Retrieval-Augmented Generation
Summary
SURE-RAG, a transparent aggregation protocol, addresses the critical gap in Retrieval-Augmented Generation (RAG) where retrieved passages may not sufficiently justify an answer. It frames this as evidence sufficiency verification, predicting whether evidence is Supported, Refuted, or Insufficient, and abstaining unless support is established. SURE-RAG aggregates pair-level claim-evidence verification scores into interpretable answer-level signals like coverage, disagreement, and retrieval uncertainty. Evaluated on HotpotQA-RAG v3, calibrated SURE-RAG achieved 0.9075 Macro-F1 (raw 0.8951 ± 0.0069), significantly outperforming DeBERTa mean-pooling (0.6516) and a GPT-4o judge (0.7284), while matching a strong concat cross-encoder (0.8888 ± 0.0109). It also reduced unsafe answer risk by 37% at 30% coverage, from 0.2588 to 0.1642. The study also establishes that controlled sufficiency verification is distinct from natural hallucination detection.
Key takeaway
For ML engineers developing RAG systems focused on factual accuracy and responsible abstention, you should consider integrating an evidence sufficiency verification layer like SURE-RAG. This approach significantly reduces unsafe answers at low coverage and provides auditability through transparent aggregation. However, recognize that this is distinct from general hallucination detection and requires careful calibration for robust high-coverage risk control in real-world deployments.
Key insights
Evidence sufficiency for RAG is a set-level property, requiring aggregation beyond independent passage scoring.
Principles
- Evidence sufficiency requires a three-way distinction: Supported, Refuted, Insufficient.
- Independent passage scoring is brittle for evidence sufficiency.
- Controlled sufficiency verification differs from natural hallucination detection.
Method
SURE-RAG uses a shared DeBERTa-v3-base cross-encoder for pair-level claim-evidence verification, then aggregates these into five interpretable answer-level signals for a three-way decision and selective score.
In practice
- Implement a decision layer for RAG that verifies evidence sufficiency.
- Aggregate local claim-evidence scores into answer-level signals.
- Use artifact-aware evaluation protocols for RAG verifiers.
Topics
- Retrieval-Augmented Generation
- Evidence Verification
- Hallucination Detection
- Selective Prediction
- DeBERTa-v3-base
- HotpotQA-RAG v3
Best for: Research Scientist, AI Architect, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
See Counsel's argued verdicts on the open AI decisions leaders are weighing →
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.