paper-with-me

홈 › Papers

QUBO-Optimized Evidence Selection for Retrieval-Augmented Question Answering with Unconventional Solvers

2026-07-14 · Rahul Singh, Madhav Vadlamani arxiv

Retrieval-augmented question answering depends on selecting evidence passages that jointly support answer generation. However, many RAG pipelines rely on top-\(k\) ranking, where passages are selected mainly by individual relevance scores, even though multi-hop questions often require complementary evidence satisfying multiple information requirements. Recent LLM-based selectors address this by treating retrieval as set selection, but using an LLM for this intermediate stage can be costly and difficult to scale. In this work, we formulate evidence selection as a Quadratic Unconstrained Binary Optimization (QUBO) problem. Given a question, candidate passages, and decomposed information requirements, our method constructs an energy function that balances relevance, requirement coverage, support strength, redundancy, complementarity, and compactness. Low-energy solutions correspond to compact evidence subsets that cover the needed requirements while avoiding unnecessary or repetitive context. The selected passages are then passed to a downstream language model for answer generation, separating combinatorial evidence selection from semantic answer generation. We evaluate the proposed QUBO selector on HotpotQA and compare it with LLM-based set selectors and non-LLM baselines including BM25, relevance top-\(k\), maximal marginal relevance, hybrid lexical--semantic ranking, greedy coverage, and random selection. The QUBO selector achieves competitive exact-match and token-F1 performance relative to LLM-based selectors while providing a solver-compatible formulation for structured evidence selection. These results suggest that multi-hop evidence selection can be cast as discrete optimization, opening a path toward RAG pipelines where LLMs are reserved for semantic processing and answer generation, while context selection is handled by Ising/QUBO-compatible solvers.

📄 PDF Abstract BibTeX arXiv:2607.12334

Code (1)

arxivsub/arXivSub_daily_arxiv ★ 3

Tasks

Question AnsweringAnswer Generation

Similar Papers 제목 키워드 기반

LLM-Specific Utility for Retrieval-Augmented Generation

2025-10-13 · Hengran Zhang, Keping Bi, Jiafeng Guo, Jiaming Zhang 외 arxiv

Retrieval-augmented generation (RAG) is typically optimized for topical relevance, yet its success ultimately depends on whether retrieved passages are useful for a large language model (LLM) to generate correct and comp…

Natural Questions

Quantum Annealing for Machine Learning: Applications in Feature Selection, Instance Selection, and Clustering

2025-07-20 · Chloe Pomeroy, Aleksandar Pramov, Karishma Thakrar, Lakshmi Yendapalli arxiv

This paper explores the applications of quantum annealing (QA) and classical simulated annealing (SA) to a suite of combinatorial optimization problems in machine learning, namely feature selection, instance selection, a…

Feature Importance

Resource-Constrained Heuristic for Max-SAT

2024-10-11 · Brian Matejek, Daniel Elenius, Cale Gentry, David Stoker 외

We propose a resource-constrained heuristic for instances of Max-SAT that iteratively decomposes a larger problem into smaller subcomponents that can be solved by optimized solvers and hardware. The unconstrained outer l…

Variable Selection

Utility-Oriented Visual Evidence Selection for Multimodal Retrieval-Augmented Generation

2026-05-13 · Weiqing Luo, Zongye Hu, Xiao Wang, Zhiyuan Yu 외 arxiv

Visual evidence selection is a critical component of multimodal retrieval-augmented generation (RAG), yet existing methods typically rely on semantic relevance or surface-level similarity, which are often misaligned with…

AdaGATE: Adaptive Gap-Aware Token-Efficient Evidence Assembly for Multi-Hop Retrieval-Augmented Generation

2026-05-04 · Yilin Guo, Yinshan Wang, Yixuan Wang arxiv

Retrieval-augmented generation (RAG) remains brittle on multi-hop questions in realistic deployment settings, where retrieved evidence may be noisy or redundant and only limited context can be passed to the generator. Ex…