菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-04-26
📄 Abstract - S2G-RAG: Structured Sufficiency and Gap Judging for Iterative Retrieval-Augmented QA

Retrieval-Augmented Generation (RAG) grounds language models in external evidence, but multi-hop question answering remains difficult because iterative pipelines must control what to retrieve next and when the available evidence is adequate. In practice, systems may answer from incomplete evidence chains, or they may accumulate redundant or distractor-heavy text that interferes with later retrieval and reasoning. We propose S2G-RAG (Structured Sufficiency and Gap-judging RAG), an iterative framework with an explicit controller, S2G-Judge. At each turn, S2G-Judge predicts whether the current evidence memory supports answering and, if not, outputs structured gap items that describe the missing information. These gap items are then mapped into the next retrieval query, producing stable multi-turn retrieval trajectories. To reduce noise accumulation, S2G-RAG maintains a sentence-level Evidence Context by extracting a compact set of relevant sentences from retrieved documents. Experiments on TriviaQA, HotpotQA, and 2WikiMultiHopQA show that S2G-RAG improves multi-hop QA performance and robustness under multi-turn retrieval. Furthermore, S2G-RAG can be integrated into existing RAG pipelines as a lightweight component, without modifying the search engine or retraining the generator.

顶级标签: llm natural language processing systems
详细标签: retrieval-augmented generation multi-hop qa iterative retrieval evidence sufficiency qa robustness 或 搜索:

S2G-RAG:面向迭代检索增强问答的结构化充分性与缺口判断方法 / S2G-RAG: Structured Sufficiency and Gap Judging for Iterative Retrieval-Augmented QA


1️⃣ 一句话总结

本文提出了一种名为S2G-RAG的新型检索增强生成框架,通过引入一个智能控制器(S2G-Judge)来动态判断当前证据是否足够回答问题,并在证据不足时自动识别缺失信息的具体缺口、指导下一轮精准检索,同时通过提取关键句子构建简洁证据库来减少噪声积累,从而显著提升多跳问答的准确性和稳定性。

源自 arXiv: 2604.23783