Inference Scaling for Bridging Retrieval and Augmented Generation
Youngwon Lee, Seung-won Hwang, Daniel Campos, Filip Graliński, Zhewei Yao, Yuxiong He
TL;DR
This work tackles generator position bias in retrieval-augmented generation (RAG) by introducing Mixture-of-Intervention (MoI), an inference-time method that treats retrieved passages as interventions and decomposes their true utility $u_p$ from position bias $a_j$ using multiple parallel permutations. MoI employs a strategized propose-aggregate framework to efficiently estimate $u_p$ and $a_j$, enabling debiased ranking without training a separate bridge module. The approach leverages retriever priors to prune the search space and can use smaller agents via preference distillation to reduce computational cost. Across MS MARCO, HotpotQA, CRAG, and FEVER, MoI yields significant improvements in downstream metrics (e.g., ROUGE-L and EM) and demonstrates cost savings and robustness across model scales, highlighting its practical impact for improving RAG systems without retraining components.
Abstract
Retrieval-augmented generation (RAG) has emerged as a popular approach to steering the output of a large language model (LLM) by incorporating retrieved contexts as inputs. However, existing work observed the generator bias, such that improving the retrieval results may negatively affect the outcome. In this work, we show such bias can be mitigated, from inference scaling, aggregating inference calls from the permuted order of retrieved contexts. The proposed Mixture-of-Intervention (MOI) explicitly models the debiased utility of each passage with multiple forward passes to construct a new ranking. We also show that MOI can leverage the retriever's prior knowledge to reduce the computational cost by minimizing the number of permutations considered and lowering the cost per LLM call. We showcase the effectiveness of MOI on diverse RAG tasks, improving ROUGE-L on MS MARCO and EM on HotpotQA benchmarks by ~7 points.
