Paper: 2602.18425 Authors: Deniz Qian, Hung-Ting Chen, Eunsol Choi Categories: cs.CL, cs.IR

Abstract

This paper introduces Retrieve-Verify-Retrieve (RVR), a novel multi-round retrieval framework designed to comprehensively answer queries with multiple valid answers. The approach addresses a critical limitation in traditional retrieval systems: their inability to capture the full diversity of valid answers. RVR operates through iterative cycles where a retriever fetches candidate documents, a verifier identifies high-quality subsets, and subsequent rounds augment the query with previously verified documents to discover uncovered answers. The method demonstrates substantial improvements over baselines, achieving at least 10% relative and 3% absolute gains in complete recall on the QAMPARI dataset, with consistent performance across out-of-domain datasets.

Key Contributions

  • Introduction of a multi-round retrieval framework that systematically maximizes answer coverage through iterative query augmentation
  • A verification mechanism that identifies high-quality document subsets to guide subsequent retrieval rounds
  • Demonstration that the approach works effectively with off-the-shelf retrievers and benefits further from fine-tuning
  • Empirical validation showing significant improvements over baseline methods including agentic search approaches
  • Generalization across multiple datasets (QAMPARI, QUEST, WebQuestionsSP) and different base retriever architectures

Methodology and Framework Design

The RVR framework operates in three distinct phases per iteration. In the initial retrieval phase, the system takes the original query and retrieves a candidate document set using a standard retriever. The verification phase then employs a verifier model to assess document quality and identify which documents contain valid, high-quality answers to the query. This verification step is crucial as it filters noise and ensures only relevant information propagates to subsequent rounds.

For subsequent retrieval rounds, RVR implements query augmentation by incorporating previously verified documents into the search context. This augmentation strategy enables the retriever to discover answers that differ from those already found, effectively exploring the answer space more comprehensively. The iterative nature of this process allows the system to progressively build a diverse set of valid answers rather than converging on a single answer type.

The framework’s design is retriever-agnostic, meaning it can work with various retrieval architectures. However, the authors demonstrate that fine-tuning retrievers specifically for this multi-round inference procedure yields additional performance gains, suggesting that retrievers can learn to better support iterative exploration when trained with this objective in mind.

Experimental Results and Performance Analysis

RVR demonstrates strong empirical performance across multiple benchmarks. On the QAMPARI dataset, which specifically tests multi-answer retrieval capabilities, the method achieves at least 10% relative improvement and 3% absolute gain in complete recall percentage compared to baseline approaches. This improvement is particularly significant as complete recall measures whether the system successfully retrieves all valid answers, not just some subset.

The framework’s robustness is evidenced by consistent gains on out-of-domain datasets QUEST and WebQuestionsSP. This cross-dataset performance indicates that RVR’s iterative approach generalizes well beyond its training distribution. The method outperforms not only traditional retrieval baselines but also more sophisticated agentic search approaches, suggesting that the structured iterative framework provides advantages over less constrained exploration strategies.

Ablation studies reveal that both the verification component and query augmentation mechanism contribute substantially to performance. The verification step prevents error propagation by filtering low-quality documents, while query augmentation enables the discovery of diverse answer types that might be missed in single-round retrieval.

Implications for Information Retrieval Systems

RVR represents a paradigm shift in how retrieval systems approach comprehensive question answering. Traditional retrieval systems optimize for relevance to a single query formulation, which inherently limits their ability to capture answer diversity. By introducing structured iteration with verification, RVR addresses this fundamental limitation while maintaining computational efficiency through its focused exploration strategy.

The framework’s compatibility with existing retrieval architectures makes it practically deployable. Organizations can enhance their current retrieval systems by adding the verification and iteration components without requiring complete system redesigns. The additional computational cost of multiple retrieval rounds is offset by the verification step’s ability to focus subsequent searches, preventing exponential growth in retrieved document sets.

For applications requiring comprehensive information gathering—such as research assistance, fact-checking, or exploratory search—RVR offers a principled approach to maximizing answer coverage. The method’s success suggests that future retrieval systems should consider answer diversity as a first-class optimization objective rather than a secondary concern.

Takeaways

  1. Multi-round retrieval with verification significantly outperforms single-round approaches for queries with multiple valid answers, achieving 10%+ relative improvements in complete recall
  2. Query augmentation with previously verified documents enables systematic exploration of diverse answer spaces without redundant retrieval
  3. The framework generalizes across different retrieval architectures and datasets, demonstrating robustness beyond specific implementation choices
  4. Verification mechanisms are critical for preventing error propagation in iterative retrieval systems
  5. Fine-tuning retrievers for multi-round inference scenarios provides additional performance gains beyond using off-the-shelf models

论文: 2602.18425 作者: Deniz Qian, Hung-Ting Chen, Eunsol Choi 分类: cs.CL, cs.IR

摘要

本文提出了检索-验证-检索(RVR)框架,这是一个专为全面回答具有多个有效答案的查询而设计的多轮检索框架。该方法解决了传统检索系统的关键局限:无法捕获有效答案的完整多样性。RVR通过迭代循环运作,检索器获取候选文档,验证器识别高质量子集,后续轮次使用先前验证的文档增强查询以发现未覆盖的答案。该方法相比基线方法展现出显著改进,在QAMPARI数据集上实现至少10%的相对提升和3%的绝对完整召回率增益,并在跨域数据集上保持一致的性能表现。

主要贡献

  • 提出了一个通过迭代查询增强系统性地最大化答案覆盖率的多轮检索框架
  • 设计了验证机制来识别高质量文档子集以指导后续检索轮次
  • 证明该方法在使用现成检索器时即可有效工作,经过微调后效果进一步提升
  • 通过实证验证显示相比基线方法(包括智能体搜索方法)的显著改进
  • 在多个数据集(QAMPARI、QUEST、WebQuestionsSP)和不同基础检索器架构上展现泛化能力

方法论与框架设计

RVR框架在每次迭代中分三个不同阶段运作。在初始检索阶段,系统接收原始查询并使用标准检索器检索候选文档集。验证阶段随后采用验证器模型评估文档质量,识别哪些文档包含查询的有效高质量答案。这个验证步骤至关重要,因为它过滤噪声并确保只有相关信息传播到后续轮次。

对于后续检索轮次,RVR通过将先前验证的文档纳入搜索上下文来实现查询增强。这种增强策略使检索器能够发现与已找到答案不同的答案,有效地更全面地探索答案空间。这个过程的迭代性质允许系统逐步构建多样化的有效答案集,而不是收敛到单一答案类型。

该框架的设计与检索器无关,意味着它可以与各种检索架构配合使用。然而,作者证明专门针对这种多轮推理过程微调检索器可以产生额外的性能提升,表明当以此目标进行训练时,检索器可以学习更好地支持迭代探索。

实验结果与性能分析

RVR在多个基准测试中展现出强劲的实证性能。在专门测试多答案检索能力的QAMPARI数据集上,该方法相比基线方法在完整召回率百分比上实现至少10%的相对改进和3%的绝对增益。这一改进尤为显著,因为完整召回率衡量的是系统是否成功检索到所有有效答案,而不仅仅是某个子集。

该框架的鲁棒性通过在跨域数据集QUEST和WebQuestionsSP上的一致性增益得到证明。这种跨数据集性能表明RVR的迭代方法能够很好地泛化到训练分布之外。该方法不仅优于传统检索基线,还优于更复杂的智能体搜索方法,表明结构化迭代框架相比约束较少的探索策略提供了优势。

消融研究揭示验证组件和查询增强机制都对性能有实质性贡献。验证步骤通过过滤低质量文档防止错误传播,而查询增强则能够发现在单轮检索中可能被遗漏的多样化答案类型。

对信息检索系统的影响

RVR代表了检索系统处理全面问答方式的范式转变。传统检索系统针对单一查询表述优化相关性,这本质上限制了它们捕获答案多样性的能力。通过引入带验证的结构化迭代,RVR解决了这一基本局限,同时通过其聚焦的探索策略保持计算效率。

该框架与现有检索架构的兼容性使其具有实际部署价值。组织可以通过添加验证和迭代组件来增强其当前检索系统,而无需完全重新设计系统。多轮检索的额外计算成本被验证步骤聚焦后续搜索的能力所抵消,防止检索文档集的指数级增长。

对于需要全面信息收集的应用——如研究辅助、事实核查或探索性搜索——RVR提供了一种最大化答案覆盖率的原则性方法。该方法的成功表明未来的检索系统应将答案多样性视为首要优化目标,而非次要考虑因素。

要点总结

  1. 带验证的多轮检索在处理具有多个有效答案的查询时显著优于单轮方法,在完整召回率上实现10%以上的相对改进
  2. 使用先前验证文档的查询增强能够系统性地探索多样化答案空间而不产生冗余检索
  3. 该框架在不同检索架构和数据集上具有泛化能力,展现出超越特定实现选择的鲁棒性
  4. 验证机制对于防止迭代检索系统中的错误传播至关重要
  5. 针对多轮推理场景微调检索器可在使用现成模型基础上提供额外性能增益