Evaluates open-domain retrieval and re-ranking systems on real-world fact-checking claims. It probes the ability to retrieve indirect, multifaceted evidence from unstructured web sources to support or refute complex queries involving health, politics, and economics. Use when the user wants to benchmark on FactIR, or asks about evaluating this task. Reports nDCG@k.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill factir-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Factir Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-factir-eval)More formats (shields.io, HTML) on the badges page.
---
name: factir-eval
description: Evaluates open-domain retrieval and re-ranking systems on real-world fact-checking claims. It probes the ability to retrieve indirect, multifaceted evidence from unstructured web sources to support or refute complex queries involving health, politics, and economics. Use when the user wants to benchmark on FactIR, or asks about evaluating this task. Reports nDCG@k.
metadata:
skill_kind: dataset_eval
source_arxiv: 2502.06006
bibtex_key: venktesh2025factir
confidence: high
---
# factir-eval
> FactIR: A Real-World Zero-shot Open-Domain Retrieval Benchmark for Fact-Checking — Venktesh et al. (2025) (arXiv:2502.06006, 2025)
## What this evaluates
Evaluates open-domain retrieval and re-ranking systems on real-world fact-checking claims. It probes the ability to retrieve indirect, multifaceted evidence from unstructured web sources to support or refute complex queries involving health, politics, and economics.
## Datasets
- **FactIR** — total ?; splits: test (-1); repo https://github.com/factiverse/factIR
## Metrics
- `nDCG@k` **(primary)** — range: [0, 1]
- Normalized Discounted Cumulative Gain at cutoff k. Computed as DCG@k divided by the ideal DCG@k, where DCG discounts relevance by the logarithm of the document's rank position.
- `Recall@k` — range: [0, 1]
- The proportion of relevant ground-truth documents retrieved within the top-k ranked results.
## Input / output format
**Input**: A fact-checking claim (served as the query) and a large corpus of unstructured web documents.
**Output**: A ranked list of retrieved documents (or top-k document IDs) for each claim.
## Scoring recipe
```python
def compute_metrics(predictions, gold, k):
recall_k = len(set(predictions[:k]) & gold) / len(gold)
dcg = sum(1 / math.log2(i + 2) for i, doc in enumerate(predictions[:k]) if doc in gold)
idcg = sum(1 / math.log2(i + 2) for i in range(min(len(gold), k)))
ndcg_k = dcg / idcg if idcg > 0 else 0.0
return ndcg_k, recall_k
```
## Common pitfalls
- Queries are real-world production claims requiring indirect reasoning, not simple keyword searches.
- Relevance is multi-faceted (partial relevance, stance), so binary relevance assumptions can mislead evaluation.
- The cutoff k is not fixed in the protocol; results must explicitly state the k value used.
## Evidence (verbatim from paper)
> Metrics: We choose Normalized Discounted Cumulative Gain (nDCG@k) and Recall@k as the primary metrics for our results.
## Citation
```bibtex
@misc{venktesh2025factir,
title={FactIR: A Real-World Zero-shot Open-Domain Retrieval Benchmark for Fact-Checking},
author={Venktesh et al. (2025)},
year={2025},
note={arXiv:2502.06006}
}
```
- arXiv: 2502.06006

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!