Language Model Re-rankers Are Fooled by Lexical Similarities
Venue: Fact Extraction and VERification (FEVER) Workshop, ACL, July 2025 Source: https://aclanthology.org/2025.fever-1.2.pdf
Key points
- The paper studies the effectiveness of large language models (LLMs) as re-rankers within retrieval-augmented generation (RAG) pipelines, where retrieved documents must be filtered for relevance before generation.
- Six LLM-based re-rankers were evaluated on two datasets, and the results show that current LLM re-rankers fail to consistently deliver satisfactory performance, in some cases not clearly outperforming the classic BM25 baseline on one of the datasets.
- Through an in-depth error analysis on the DRHard dataset, the authors identify a central failure mode: LLM re-rankers are fooled by lexical similarity, tending to judge a document as relevant simply because it shares words with the query.
- This behavior differs from human judgment — human annotators, unlike the models, do not overweight lexical overlap when assessing relevance.
- The paper explores mitigation approaches, including incorporating lexical signals (e.g., BM25) into the re-ranking process and comparing point-wise and list-wise re-ranking strategies.
- Surface-form matching remains a blind spot for neural re-rankers; lexical overlap can inflate apparent relevance.
- Classic sparse retrieval signals still add value in modern RAG stacks and can be combined with LLM re-rankers.
- Evaluation of re-rankers should explicitly probe robustness to adversarial or lexically similar but irrelevant documents.
- 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 Goal
- Deep Learning to Rank in Industrial Search Engines
Implications
Note
This forum post is a structured digest based on the paper's abstract and metadata; quantitative results should be verified against the original PDF. For related work, see adjacent entries on cross-encoders vs. LLMs for reranking, listwise reranking (FIRST), and neural ranking in industrial search engines.