TL;DR
The paper reframes LLM pairwise reranking as active learning from noisy comparisons using the Mohajer algorithm. On TREC DL2019/2020, it achieves +9.7 NDCG@10 improvement over sorting baselines at 300 calls, while randomized-direction prompting reduces calls to peak quality by 44%.

论文原始摘要

Pairwise Ranking Prompting (PRP) elicits pairwise preference judgments from an LLM, which are then aggregated into a ranking, usually via classical sorting algorithms. However, judgments are noisy, order-sensitive, and sometimes intransitive, so sorting assumptions do not match the setting. Because sorting aims to recover a full permutation, truncating it to meet a call budget does not produce a dependable top-K. We thus reframe PRP reranking as active learning from noisy pairwise comparisons and show that active rankers are drop-in replacements that improve NDCG@10 per call in the call-constrained regime. Our noise-robust framework also introduces a randomized-direction oracle that uses a single LLM call per pair. This approach converts systematic position bias into zero-mean noise, enabling unbiased aggregate ranking without the cost of bidirectional calls.

Paper Collector 中文速览

将PRP重排序重构为主动学习,提升效率

方法概述

将PRP重排序重构为从噪声成对比较中进行主动学习。引入随机方向预言机,将系统位置偏差转化为零均值噪声,无需双向调用即可实现无偏聚合排序,在调用受限场景下提升NDCG@10。

核心贡献

提出噪声鲁棒框架,用主动学习替代排序算法,引入随机方向预言机消除位置偏差

原始来源与核验范围

核验仅覆盖论文正文中的主张、证据片段和参考文献关系。NGJOO 未独立运行作者代码、重做实验或验证真实部署效果;页面中的可复现性分数是文档完整度评估,不是复现实验结果。

28
已证实
1
证据不足
7
无法验证
N/A
可复现性
置信度
87%

核心问题

How can LLM-based pairwise reranking be improved by modeling it as budgeted learning from noisy pairwise comparisons rather than using classical sorting algorithms?

核心方法

The authors evaluate active ranking algorithms (Mohajer, PAC) as drop-in replacements for sorting in PRP reranking, using BM25 priors to restrict comparisons to top candidates. Two oracle designs are tested: bidirectional (2 calls per pair) and randomized-direction (1 call per pair, converting position bias into zero-mean noise). Experiments rerank N=100 BM25 candidates into top-K=10 lists on BEIR-style tasks and TREC DL2019/2020 using Flan-T5-L/XL.

论点验证

已证实 (85%) We therefore frame PRP reranking as active learning from noisy pairwise comparisons, choosing adaptively which pairs to query to maximize top-K quality within a budget.
已证实 (90%) We also evaluate a cheaper oracle: randomizing the prompt direction yields a one-call estimate that converts position bias into zero-mean noise.
已证实 (80%) We argue that PRP reranking is better modeled as budgeted learning from noisy pairwise comparisons than deterministic sorting.
已证实 (80%) For practitioners deploying PRP in RAG pipelines, our results suggest a simple recipe: use Mohajer with the randomized-direction oracle when the call budget exceeds the warm-up threshold (∼K×K calls), and fall back to sorting when budgets are either very small or large enough for global refinement.
已证实 (85%) The best-performing active scheduler in our experiments is the algorithm of Mohajer et al. (2017), which we call Mohajer: it adaptively selects which pairs to query, concentrating comparisons near the top-K boundary.
已证实 (90%) On TREC DL2019/2020 with Flan-T5-XL, Mohajer outperforms the best sorting baseline by +9.7 NDCG@10 at B=300 calls (66.1 vs. 56.4), under the same bidirectional oracle, with the advantage holding across the entire call-constrained regime (B=200-450).
Specific quantitative results are provided: +9.7 NDCG@10 improvement (66.1 vs. 56.4) at B=300 calls under bidirectional oracle. The paper references Table 1 and bootstrap significance tests in Appendix D.
已证实 (90%) For PRP rerankers, it raises quality at fixed budget: BubbleSort gains +5.5 NDCG@10 at B=300 (56.4→62.0) simply by halving the call cost per pair and covering more comparisons.
Specific numbers are provided: BubbleSort gains +5.5 NDCG@10 at B=300 (56.4→62.0). The mechanism (halving call cost per pair) is clearly explained.
已证实 (90%) For active rankers, the effect is more pronounced: comparing Mohajer under both oracles, the randomized-direction oracle raises the quality ceiling from 66.96 to 68.0 while reducing the calls needed to reach it from B=450 to B=250, a 44% reduction.
Specific numbers provided: quality ceiling raised from 66.96 to 68.0, calls reduced from B=450 to B=250. The 44% reduction is mathematically correct: (450-250)/450 = 44.4%.
已证实 (75%) Across BEIR-style tasks, active rankers reach NDCG@10 comparable to Quick-Sort (Avg. 56.8 for Flan-T5-XL) with up to 7× fewer calls.
已证实 (95%) We assume only pair-consistency, p ij (q) = 1 - p ji (q) for i ≠ j (this is enforced via oracle design).
This is a clearly stated theoretical assumption that is enforced by oracle design. The bidirectional oracle naturally satisfies this, and the randomized-direction oracle is proven to satisfy it in expectation (Appendix E).
已证实 (95%) Call-centric cost. We count LLM inference calls: bidirectional uses two per pair, randomized-direction uses one.
Clear methodological design choice explicitly stated in the paper.
已证实 (90%) Randomized-direction (one call). We randomize input order: V ij = LLM(d i , d j ) with probability 1/2, else V ij = 1 - LLM(d j , d i ). This ensures reciprocity in expectation, i.e. Pr[V ij =1] = 1-Pr[V ji =1]: each individual call may be position-biased, but averaging over the random direction converts systematic bias into zero-mean noise, preserving pair-consistency.
The oracle is fully specified with mathematical notation, and the theoretical property (reciprocity in expectation) is proven in Appendix E with explicit derivation.
已证实 (95%) We take anchors from a zero-cost BM25 prior and restrict comparisons to the top K×m (m=3) BM25 prefix, keeping calls low.
Clear design choice for PAC method with specific parameter values stated.
已证实 (95%) PAC returns an unordered best-K set, so we apply BubbleSort on the final top-K.
Clear design choice explicitly stated.
已证实 (95%) We rerank the top N =100 BM25 candidates into an ordered top-K list (K=10) and report NDCG@10 on BEIR-style tasks (Table 2) and TREC DL2019/2020, capping each method at B ∈ {100, 150, . . . , 500} LLM calls.
Clear experimental setup with specific parameter values.
已证实 (95%) The pairwise oracle uses Flan-T5-L/XL under (i) bidirectional and (ii) randomized-direction prompting.
Clear experimental design choice.
已证实 (95%) BubbleSort uses caching.
Clear design choice with citation.
已证实 (90%) In the call-constrained regime (B ≈ 200-450), Mohajer outperforms PRP rerankers under the same oracle.
Direct experimental finding stated with reference to Table 1 results and bootstrap significance tests.
已证实 (90%) Randomized-direction compresses "time-to-quality": Mohajer reaches peak quality by B=250.
Specific quantitative finding with B=250 threshold identified.
已证实 (85%) At high budgets, sorting catches up as global refinement pays off.
Experimental observation stated in main findings. The mechanism (global refinement) is a plausible explanation.

... 共 36 个论点

可复现性评估

较低可复现性 (0%)

缺失的复现细节

局限与证据边界

本分析由 PDF 阅读助手 自动生成,仅供参考,不构成学术评审意见。验证结论和可复现性评估基于论文文本自动分析,可能存在偏差。原始论文请参阅 arXiv

分析时间:2026-05-24T01:24:55+00:00 · 数据来源:Paper Collector