This benchmark evaluates cross-lingual abstractive summarization, specifically the ability of models to generate coherent English summaries from articles written in other languages. It probes how well systems can handle translation and summarization jointly, either through direct cross-lingual fine-tuning or two-step pipeline approaches. Use when the user wants to benchmark on WikiLingua, or asks about evaluating this task. Reports ROUGE-L F1.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill wikilingua-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wikilingua Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-wikilingua-eval)More formats (shields.io, HTML) on the badges page.
---
name: wikilingua-eval
description: This benchmark evaluates cross-lingual abstractive summarization, specifically the ability of models to generate coherent English summaries from articles written in other languages. It probes how well systems can handle translation and summarization jointly, either through direct cross-lingual fine-tuning or two-step pipeline approaches. Use when the user wants to benchmark on WikiLingua, or asks about evaluating this task. Reports ROUGE-L F1.
metadata:
skill_kind: dataset_eval
source_arxiv: 2010.03093
bibtex_key: ladhak2020wikilingua
confidence: high
---
# wikilingua-eval
> WikiLingua: A New Benchmark Dataset for Cross-Lingual Abstractive Summarization — Ladhak et al. (2020) (arXiv:2010.03093, 2020)
## What this evaluates
This benchmark evaluates cross-lingual abstractive summarization, specifically the ability of models to generate coherent English summaries from articles written in other languages. It probes how well systems can handle translation and summarization jointly, either through direct cross-lingual fine-tuning or two-step pipeline approaches.
## Datasets
- **WikiLingua** — total 141457; splits: train (-1), dev (-1), test (-1); repo https://github.com/esdurmus/Wikilingua
## Metrics
- `ROUGE-1 F1` — range: [0, 1]
- F1 score computed over unigram overlaps between generated summary and reference summary.
- `ROUGE-2 F1` — range: [0, 1]
- F1 score computed over bigram overlaps between generated summary and reference summary.
- `ROUGE-L F1` **(primary)** — range: [0, 1]
- F1 score based on the longest common subsequence (LCS) between generated and reference summaries, capturing sentence-level fluency and structure.
## Input / output format
**Input**: Source language article tokenized into subwords, with a special separator token between each sentence and a language indicator token appended at the end.
**Output**: Target language summary tokenized into subwords, with a language indicator token prepended at the beginning to prime the decoder.
## Scoring recipe
```python
def compute_rouge_f1(predictions, references, ngram=1):
scores = []
for pred, ref in zip(predictions, references):
rouge = rouge_score.rouge_scores(ref, pred, ngrams=ngram)
scores.append(rouge[f'rouge{ngram}']['fmeasure'])
return sum(scores) / len(scores)
```
## Common pitfalls
- Topic leakage must be prevented: English test articles must share topics with non-English test articles to ensure consistent evaluation across languages.
- Translation error isolation: Two-step baselines (Sum-Trans, Trans-Sum) require an oracle system (Trans-Sum-G) with gold translations to accurately measure performance drops caused by machine translation errors.
- Statistical validation: Raw score differences must be validated with Welch's t-test (p < 0.01) to claim significant improvements over baselines.
## Evidence (verbatim from paper)
> The numbers correspond to ROUGE-1/ROUGE-2/ROUGE-L F1 scores respectively. † indicates where ROUGE-L F1 is significantly better than all baselines, and ‡ indicates where ROUGE-L F1 is significantly better than all baselines except Trans-Sum-R. We use Welch's t-test, and use p < 0.01 to assess significance.
## Citation
```bibtex
@misc{ladhak2020wikilingua,
title={WikiLingua: A New Benchmark Dataset for Cross-Lingual Abstractive Summarization},
author={Ladhak et al. (2020)},
year={2020},
note={arXiv:2010.03093}
}
```
- arXiv: 2010.03093
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!