Rank1: Test-Time Compute for Reranking in Information Retrieval (Feb 2025, arXiv)
Overview
- Paper: Rank1: Unleashing Test-Time Compute for Reranking in Information Retrieval
- arXiv: https://arxiv.org/abs/2502.18418
- Authors: Orion Weller, Kathryn Ricci, Eugene Yang, Andrew Yates, Dawn Lawrie, Benjamin Van Durme
- Date: February 2025
- Category: Ranking for Search / Information Retrieval
- Applies test-time compute (reasoning before answering) to the reranking task in search pipelines: the model generates an explicit reasoning chain before deciding whether a document is relevant to a query.
- Introduces a training dataset of reasoning chains for query-document pairs, produced with reasoning models (R1-Distill-32B), enabling supervised training of rerankers that follow a reasoning-then-answer format.
- Releases Rank1 models in multiple sizes (e.g., 32B, 7B, 1.4B), with distillation and quantization (including a MLLM/miniature language model variant) so that strong reranking quality can run on a single GPU.
- Reports state-of-the-art reranking performance on standard benchmarks (MS MARCO, BEIR) at the time of publication, showing that reasoning-based rerankers outperform prior pointwise and listwise LLM rerankers.
- Demonstrates that test-time compute—increasingly popular in math and coding—transfers to information retrieval, making it a promising direction for RAG pipelines where rerank quality drives downstream answer quality.
- Paper: https://arxiv.org/abs/2502.18418
- Deep Learning to Rank in Industrial Search Engines
- A Thorough Comparison of Cross-Encoders and LLMs for Reranking SPLADE
- Accelerating Listwise Reranking: Reproducing and Enhancing FIRST (SIGIR)
- Adaptive Neural Ranking Framework: Toward Maximized Business Goals
Key points
Why it matters
Reranking is a critical quality bottleneck in modern search and RAG systems: retrieval fetches candidates cheaply, and the reranker decides what the generator sees. By letting the reranker spend extra inference-time tokens on reasoning, Rank1 trades modest compute for significant accuracy gains. The released small, quantized models make this practical for production deployments.