RetrievalRouter: Joint Modality and Architecture Selection for Document Retrieval

Hugging Face Daily Papers Papers

Summary

RetrievalRouter is a lightweight query-aware router that adaptively selects retrieval pipelines to improve accuracy and speed in document retrieval, outperforming static baselines.

Document retrieval increasingly supports high-stakes information access in finance, healthcare, and law. Modern retrieval pipelines vary both in modality (text or multimodal) and in retrieval architecture (dense or late-interaction). These choices impose a hard compromise: the most effective pipelines are too slow and expensive to run at scale, while the fastest fail to retrieve evidence from complex documents. Practitioners must therefore choose between missed evidence and unusable latency, with no principled basis for adapting that choice at the query level. We show that this compromise is unnecessary. Not every query requires the same pipeline. Across benchmarks spanning financial and scientific corpora, no static pipeline dominates. We introduce RetrievalRouter, a lightweight query-aware router that learns, from the query text alone, which retrieval pipeline best fits each query. A single tunable parameter exposes the full accuracy-latency frontier, and for every static baseline, RetrievalRouter offers an operating point that is simultaneously more accurate and faster. Against the best static baseline, RetrievalRouter is 2.5% more accurate and 12.4 times faster. Furthermore, compared with prior adaptive strategy selection methods, RetrievalRouter achieves significantly higher nDCG@5 across accuracy-oriented settings, while matching or numerically outperforming them on both nDCG@5 and latency in latency-oriented settings. Our code and data are available at https://github.com/emrekuruu/retrieval-router.
Original Article
View Cached Full Text

Cached at: 08/27/26, 11:19 AM

Paper page - RetrievalRouter: Joint Modality and Architecture Selection for Document Retrieval

Source: https://huggingface.co/papers/2608.25625 https://huggingface.co/login?next=%2Fpapers%2F2608.25625-

Abstract

RetrievalRouter adaptively selects retrieval pipelines per query to improve both accuracy and speed across diverse document benchmarks.

Document retrieval increasingly supports high-stakes information access in finance, healthcare, and law. Modern retrieval pipelines vary both in modality (text or multimodal) and in retrieval architecture (dense orlate-interaction). These choices impose a hard compromise: the most effective pipelines are too slow and expensive to run at scale, while the fastest fail to retrieve evidence from complex documents. Practitioners must therefore choose between missed evidence and unusable latency, with no principled basis for adapting that choice at the query level. We show that this compromise is unnecessary. Not every query requires the same pipeline. Across benchmarks spanning financial and scientific corpora, no static pipeline dominates. We introduceRetrievalRouter, a lightweight query-aware router that learns, from the query text alone, which retrieval pipeline best fits each query. A single tunable parameter exposes the fullaccuracy-latency frontier, and for every static baseline,RetrievalRouteroffers an operating point that is simultaneously more accurate and faster. Against the best static baseline,RetrievalRouteris 2.5% more accurate and 12.4 times faster. Furthermore, compared with prior adaptive strategy selection methods,RetrievalRouterachieves significantly highernDCG@5across accuracy-oriented settings, while matching or numerically outperforming them on bothnDCG@5and latency in latency-oriented settings. Our code and data are available at https://github.com/emrekuruu/retrieval-router.

View arXiv pageView PDFGitHub0Add to collection

Community

Paper author

Paper submitter

about 4 hours ago

edited about 4 hours ago

Upload images, audio, and videos by dragging in the text input, pasting, orclicking here.

Tap or paste here to upload images

https://huggingface.co/login?next=%2Fpapers%2F2608.25625-

Get this paper in your agent:

hf papers read 2608\.25625

Don’t have the latest CLI?curl \-LsSf https://hf\.co/cli/install\.sh \| bash

Models citing this paper7

#### emrekuruu/RetrievalRouter-lambda-l00 Text Classification• 0.6B• Updatedabout 3 hours ago • 22 #### emrekuruu/RetrievalRouter-lambda-l30 Text Classification• 0.6B• Updatedabout 3 hours ago • 15 #### emrekuruu/RetrievalRouter-lambda-l100 Text Classification• 0.6B• Updatedabout 3 hours ago • 35 #### emrekuruu/RetrievalRouter-lambda-l70 Text Classification• 0.6B• Updatedabout 3 hours ago • 23 Browse 7 models citing this paper## Datasets citing this paper11

#### emrekuruu/SciQAG Viewer• Updatedabout 3 hours ago • 4.5k • 138 #### emrekuruu/FinQA Viewer• Updatedabout 3 hours ago • 8.28k • 70 #### emrekuruu/MP-DocVQA Viewer• Updatedabout 3 hours ago • 6.12k • 40 #### emrekuruu/ConvFinQA Viewer• Updatedabout 3 hours ago • 3.46k • 36 Browse 11 datasets citing this paper### Spaces citing this paper0

No Space linking this paper

Cite arxiv.org/abs/2608.25625 in a Space README.md to link it from this page.

Collections including this paper1

Similar Articles

Arch-Router: Aligning LLM Routing with Human Preferences

Papers with Code Trending

Arch-Router is a compact 1.5B model that aligns LLM routing with human preferences by mapping queries to user-defined domains and action types, outperforming proprietary models in subjective evaluations.

Understanding the Behaviors of Environment-aware Information Retrieval

Hugging Face Daily Papers

This paper presents the first systematic analysis of how large language models can learn to adapt query formulation strategies for different retrievers using reinforcement learning, revealing distinct optimal query styles and introducing a branching-based rollout technique for multi-retrieval-step training stability.