Evaluates the ranking effectiveness of retrieval and reranking models across monolingual, cross-language, and multilingual information retrieval tasks. It specifically probes how well systems handle language mismatches and multilingual document collections without relying on simple keyword matching. Use when the user wants to benchmark on NeuCLIRBench, or asks about evaluating this task. Reports nDCG@20.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill neuclirbench-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Neuclirbench Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-neuclirbench-eval)More formats (shields.io, HTML) on the badges page.
---
name: neuclirbench-eval
description: Evaluates the ranking effectiveness of retrieval and reranking models across monolingual, cross-language, and multilingual information retrieval tasks. It specifically probes how well systems handle language mismatches and multilingual document collections without relying on simple keyword matching. Use when the user wants to benchmark on NeuCLIRBench, or asks about evaluating this task. Reports nDCG@20.
metadata:
skill_kind: dataset_eval
source_arxiv: 2511.14758
bibtex_key: lawrie2025neuclirbench
confidence: high
---
# neuclirbench-eval
> NeuCLIRBench: A Modern Evaluation Collection for Monolingual, Cross-Language, and Multilingual Information Retrieval — Lawrie et al. (2025) (arXiv:2511.14758, 2025)
## What this evaluates
Evaluates the ranking effectiveness of retrieval and reranking models across monolingual, cross-language, and multilingual information retrieval tasks. It specifically probes how well systems handle language mismatches and multilingual document collections without relying on simple keyword matching.
## Datasets
- **NeuCLIRBench** — total 10000000; splits: test (-1)
## Metrics
- `nDCG@20` **(primary)** — range: [0, 1]
- Normalized Discounted Cumulative Gain at rank 20, measuring the quality of the ranked list against graded relevance judgments by discounting gains logarithmically with position.
- `Judged@20` — range: [0, 1]
- The proportion of the top-20 retrieved documents that have human relevance judgments available in the collection, indicating judgment coverage and reusability.
## Input / output format
**Input**: Query text (in Chinese, Persian, Russian, or English) and a candidate document set (or full 10M-document corpus for first-stage retrieval).
**Output**: Ranked list of document IDs or relevance scores corresponding to the input candidate set.
## Scoring recipe
```python
def compute_ndcg_at_20(predicted_scores, relevance_labels, k=20):
dcg = sum((2**rel - 1) / math.log2(i + 2) for i, rel in enumerate(predicted_scores[:k]))
ideal_labels = sorted(relevance_labels, reverse=True)[:k]
idcg = sum((2**rel - 1) / math.log2(i + 2) for i, rel in enumerate(ideal_labels))
return dcg / idcg if idcg > 0 else 0.0
def compute_judged_at_20(top_k_docs, judgment_set):
return sum(1 for doc in top_k_docs[:20] if doc in judgment_set) / 20.0
```
## Common pitfalls
- Rerankers often fail to improve strong first-stage fusion baselines, as the initial ranking is already highly effective and difficult to beat.
- Multilingual retrieval tasks show significantly smaller performance gaps between models compared to monolingual or cross-language tasks, making differentiation harder.
- Directly comparing BM25 with query translation (QT) is unfair due to tripled query length, requiring careful baseline selection and normalization.
## Evidence (verbatim from paper)
> Models in each group are ordered by the nDCG@20 on the multilingual retrieval task.
## Citation
```bibtex
@misc{lawrie2025neuclirbench,
title={NeuCLIRBench: A Modern Evaluation Collection for Monolingual, Cross-Language, and Multilingual Information Retrieval},
author={Lawrie et al. (2025)},
year={2025},
note={arXiv:2511.14758}
}
```
- arXiv: 2511.14758
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!