FIRST: Faster Improved Listwise Reranking with Single Token Decoding
Revanth Gangi Reddy, JaeHyeok Doo, Yifei Xu, Md Arafat Sultan, Deevya Swain, Avirup Sil, Heng Ji
TL;DR
The paper addresses the inefficiency of traditional listwise LLM rerankers that generate full ranking sequences by proposing FIRST, which ranks candidates from the logits of the first generated identifier. It introduces a joint learning-to-rank objective $L_{Joint} = L_{LM} + \lambda L_{Rank}$, combining the standard LM loss with a RankNet-style loss to prioritize top-ranked passages. Empirically, FIRST achieves about a 50% reduction in inference latency and delivers competitive BEIR results, with ablations showing the benefit of the ranking loss and weighting strategies. It also demonstrates that relevance feedback using an LLM reranker can provide superior distillation signals for improving retriever recall compared to cross-encoders.
Abstract
Large Language Models (LLMs) have significantly advanced the field of information retrieval, particularly for reranking. Listwise LLM rerankers have showcased superior performance and generalizability compared to existing supervised approaches. However, conventional listwise LLM reranking methods lack efficiency as they provide ranking output in the form of a generated ordered sequence of candidate passage identifiers. Further, they are trained with the typical language modeling objective, which treats all ranking errors uniformly--potentially at the cost of misranking highly relevant passages. Addressing these limitations, we introduce FIRST, a novel listwise LLM reranking approach leveraging the output logits of the first generated identifier to directly obtain a ranked ordering of the candidates. Further, we incorporate a learning-to-rank loss during training, prioritizing ranking accuracy for the more relevant passages. Empirical results demonstrate that FIRST accelerates inference by 50% while maintaining a robust ranking performance with gains across the BEIR benchmark. Finally, to illustrate the practical effectiveness of listwise LLM rerankers, we investigate their application in providing relevance feedback for retrievers during inference. Our results show that LLM rerankers can provide a stronger distillation signal compared to cross-encoders, yielding substantial improvements in retriever recall after relevance feedback.
