Score
Designing methods that reorder candidate outputs post-retrieval (e.g., via representation similarity, sequential K-step reranking, or task-specific criteria) to improve metrics like recall@k or nDCG and to refine top-ranked results without necessarily training new verifiers.
Traditional retrieval-then-reranking pipelines suffer from two key limitations: dependency on the quality of initial retrieval and the high computational cost of large language model (LLM)-based rerankers. To address these, we propose Reranker-Guided Search (RGS), the first approach to explicitly incorporate reranker preferences into the retrieval process. RGS constructs a proximity graph over approximate nearest neighbors, then performs greedy path search guided jointly by embedding similarity and gradients of reranker scores—dynamically prioritizing high-potential documents. This breaks the rigid “retrieve-then-rerank” sequential paradigm and enables end-to-end optimization under a fixed reranking budget (100 documents). Evaluated on BRIGHT, FollowIR, and M-BEIR benchmarks, RGS improves Recall@100 by 3.5, 2.9, and 5.1 percentage points, respectively, significantly alleviating the precision-efficiency trade-off.
Existing neural re-rankers achieve strong performance but suffer from high query-time computational overhead, poor generalization to complex queries, and multilingual support requiring task-specific fine-tuning. This paper proposes Rank-K—the first listwise re-ranker enabling test-time reasoning—where computation is dynamically allocated per query to achieve adaptive refinement. Its core innovation lies in natively integrating reasoning-capable large language models into a listwise ranking framework, coupled with multilingual unified representation learning and contrastive alignment, eliminating the need for fine-tuning to achieve cross-lingual re-ranking. Experiments demonstrate that, applied to BM25 initial rankings, Rank-K outperforms the state-of-the-art RankZephyr by 23% in NDCG@10; when initialized from the strong retriever SPLADE-v3, it yields a 19% gain. Crucially, Rank-K maintains monolingual effectiveness while achieving robust multilingual transfer—without any language-specific adaptation.
This work addresses three key challenges in information retrieval reranking: weak reasoning capability, poor interpretability, and insufficient out-of-distribution (OOD) generalization. To this end, we propose Rank1—the first lightweight reranker incorporating test-time computation. Methodologically, we distill structured reasoning traces (>600K samples) from reasoning-oriented large language models (e.g., o1, R1), perform supervised training on MS MARCO, and support prompt-driven zero-shot transfer. The model architecture is designed for promptability, explicit interpretability, and inference efficiency; quantization further reduces computational and memory overhead. Key contributions include: (1) the first application of the test-time computation paradigm to reranking; (2) generation of human-readable, step-by-step reasoning chains as explicit outputs; and (3) state-of-the-art performance across multiple benchmarks with strong OOD generalization.
This work addresses the high computational cost and evolving efficacy of re-ranking techniques in information retrieval (IR), particularly within retrieval-augmented generation (RAG) pipelines. We propose the first structured, generational taxonomy of re-ranking methodologies—spanning heuristic approaches, neural cross-encoders, T5-based models, graph neural networks, and large language model (LLM)-driven paradigms. Crucially, we formally distinguish and empirically evaluate two emerging LLM-based re-ranking paradigms: prompting-based and fine-tuning-based. Through multi-dimensional quantitative assessment—including accuracy, latency, and resource consumption—we characterize the efficiency-effectiveness trade-off and establish a reproducible benchmark suite. Our framework provides both theoretical insight and practical engineering guidance for selecting and deploying re-rankers in industrial-scale IR systems.
This study identifies a performance breakpoint and semantic failure in cross-encoder re-rankers (e.g., ColBERTv2, RankT5) for large-scale document re-ranking: retrieval quality degrades significantly when the candidate set exceeds ~1,000 documents—MRR@10 drops by 12.7% on average, and 38% of top-scoring results exhibit neither lexical overlap nor semantic similarity with the query. Through systematic ablation and scaling experiments, augmented with semantic similarity and lexical matching analyses, we empirically challenge the widely held assumption that re-rankers universally outperform first-stage retrievers. Our key contributions are: (1) establishing the effective scale boundary for cross-encoder re-rankers; (2) revealing their propensity for relevance misjudgment under ultra-large candidate lists; and (3) providing theoretical grounding and practical guidance—along with critical deployment warnings—for integrating re-ranking modules into large-scale retrieval systems.
This work addresses the challenge that while extensive query reformulations in retrieval systems can improve recall, they often induce query drift and incur high reranking costs, making efficient utilization under limited inference budgets difficult. The authors propose ReformIR, a framework that treats query reformulation as a first-class feature and jointly optimizes reformulation selection and document filtering within a fixed reranking budget. By leveraging a strong neural reranker as a teacher model to provide online relevance estimates, ReformIR trains a lightweight proxy model to adaptively select high-value reformulations and documents, effectively mitigating drift while enhancing recall. Experiments demonstrate that ReformIR significantly outperforms existing methods on MS MARCO and TREC DL19–22 benchmarks, maintaining performance gains even as the number of reformulations increases, thereby validating the efficacy of feedback-driven reformulation optimization.
This work addresses the persistent gap in retrieval-augmented generation (RAG) systems, where improvements in retrieval performance often fail to translate into gains in downstream accuracy due to a disconnect between recall and reasoning. To bridge this gap, the authors propose NeocorRAG, a novel framework that introduces, for the first time, the Recall Conversion Rate (RCR) metric to quantify this discrepancy. NeocorRAG establishes a training-free, evidence-chain-driven retrieval optimization paradigm: it employs an activation-based search algorithm to generate refined candidate sets and leverages constrained decoding to construct precise evidence chains, which in turn guide high-quality retrieval in a backward-refinement manner. The method achieves state-of-the-art results across multiple multi-hop question answering benchmarks—including HotpotQA, 2WikiMultiHopQA, MuSiQue, and Natural Questions—while being compatible with language models ranging from 3B to 70B parameters and consuming less than 20% of the token budget required by comparable approaches.
This work addresses the challenge of ineffective reranking in dense retrieval systems under zero-shot scenarios, where supervised signals are absent. The authors propose DART, a novel method that performs lightweight adaptive training at test time to refine reranking. Specifically, DART generates pseudo-labels from top- and bottom-ranked documents in the initial retrieval results and fine-tunes the bilinear scoring matrix via a small number of gradient updates, guided by a confidence-weighted margin loss and a cross-query momentum buffering mechanism. Requiring no additional annotations, DART achieves an average relative improvement of 2.1% in NDCG@10 across six BEIR benchmarks, with less than 10ms added latency per query.
Retrieval-Augmented Generation (RAG) depends on document ranking to provide useful evidence for generation, but conventional reranking methods mainly optimize query-document relevance rather than generation usefulness. A relevant document may still introduce noise, while a lower-ranked document may better reduce the generator's uncertainty. We propose CAR (Confidence-Aware Reranking), a query-guided, training-free, and plug-and-play reranking framework that uses generator confidence change as a document usefulness signal. CAR estimates confidence through the semantic consistency of multiple sampled answers under query-only and query-document conditions. Documents that significantly increase confidence are promoted, those that decrease confidence are demoted, and uncertain cases preserve the baseline order, while a query-level gate avoids unnecessary intervention on already confident queries. Experiments on four BEIR datasets show that CAR consistently improves NDCG@5 across sparse and dense retrievers, LLM-based and supervised rerankers, and four LLM backbones. Notably, CAR improves the YesNo reranker by 25.4 percent on average under Contriever retrieval, and its ranking gains strongly correlate with downstream generation F1 improvements, achieving Spearman rho = 0.964.