mlsum-eval
MLSUM: The Multilingual Summarization Corpus — Scialom et al. (2020) (arXiv:2004.14900, 2020)
What this evaluates
Evaluates abstractive text summarization models across multiple languages (French, German, Spanish, Russian, Turkish) to measure generation quality and investigate cross-lingual performance gaps and model biases.
Datasets
Metrics
ROUGE-L (primary) — range: [0, 1]
- Recall-oriented overlap of the longest common subsequence between reference and generated summaries, normalized by reference length.
METEOR — range: [0, 1]
- Metric evaluating alignment between generated and reference summaries based on exact, stem, synonym, and paraphrase matches, with penalties for fragmentation.
Input / output format
Input: Source news article text.
Output: Generated summary text.
Scoring recipe
def compute_rouge_l(predictions, references):
scores = []
for pred, ref in zip(predictions, references):
lcs_len = longest_common_subsequence_length(pred, ref)
recall = lcs_len / len(ref)
precision = lcs_len / len(pred)
if recall + precision > 0:
f_measure = 2 * (recall * precision) / (recall + precision)
else:
f_measure = 0.0
scores.append(f_measure)
return sum(scores) / len(scores)
Common pitfalls
- ROUGE scores can be artificially inflated or deflated by morphological differences between languages, making direct cross-lingual comparisons misleading without normalization.
- TextRank baselines exhibit a strong English bias, performing poorly on other languages despite being unsupervised, which can skew comparative analyses if not accounted for.
- Oracle extractive performance varies by language not just due to abstractiveness but because relevant information may be more spread across sentences in some languages (e.g., French/Spanish vs. German).
Evidence (verbatim from paper)
Turning to the observed results, we report in Table 2 the ROUGE-L and METEOR scores obtained by each model for all languages. We note that the overall order of systems (for each language) is preserved when using either metric (modulo some swaps between Lead_3 and Pointer Generator, but with relatively close scores).
Citation
@misc{scialom2020mlsum,
title={MLSUM: The Multilingual Summarization Corpus},
author={Scialom et al. (2020)},
year={2020},
note={arXiv:2004.14900}
}
1---2name: mlsum-eval3description: Evaluates abstractive text summarization models across multiple languages (French, German, Spanish, Russian, Turkish) to measure generation quality and investigate cross-lingual performance gaps and model biases. Use when the user wants to benchmark on MLSUM, or asks about evaluating this task. Reports ROUGE-L.4---56# mlsum-eval78> MLSUM: The Multilingual Summarization Corpus — Scialom et al. (2020) (arXiv:2004.14900, 2020)910## What this evaluates1112Evaluates abstractive text summarization models across multiple languages (French, German, Spanish, Russian, Turkish) to measure generation quality and investigate cross-lingual performance gaps and model biases.1314## Datasets1516- **MLSUM** — total ?; splits: train (-1), val (-1), test (-1); repo https://github.com/recitalAI/MLSUM1718## Metrics1920- `ROUGE-L` **(primary)** — range: [0, 1]21 - Recall-oriented overlap of the longest common subsequence between reference and generated summaries, normalized by reference length.22- `METEOR` — range: [0, 1]23 - Metric evaluating alignment between generated and reference summaries based on exact, stem, synonym, and paraphrase matches, with penalties for fragmentation.2425## Input / output format2627**Input**: Source news article text.2829**Output**: Generated summary text.3031## Scoring recipe3233```python34def compute_rouge_l(predictions, references):35 scores = []36 for pred, ref in zip(predictions, references):37 lcs_len = longest_common_subsequence_length(pred, ref)38 recall = lcs_len / len(ref)39 precision = lcs_len / len(pred)40 if recall + precision > 0:41 f_measure = 2 * (recall * precision) / (recall + precision)42 else:43 f_measure = 0.044 scores.append(f_measure)45 return sum(scores) / len(scores)46```4748## Common pitfalls4950- ROUGE scores can be artificially inflated or deflated by morphological differences between languages, making direct cross-lingual comparisons misleading without normalization.51- TextRank baselines exhibit a strong English bias, performing poorly on other languages despite being unsupervised, which can skew comparative analyses if not accounted for.52- Oracle extractive performance varies by language not just due to abstractiveness but because relevant information may be more spread across sentences in some languages (e.g., French/Spanish vs. German).5354## Evidence (verbatim from paper)5556> Turning to the observed results, we report in Table 2 the ROUGE-L and METEOR scores obtained by each model for all languages. We note that the overall order of systems (for each language) is preserved when using either metric (modulo some swaps between Lead_3 and Pointer Generator, but with relatively close scores).5758## Citation5960```bibtex61@misc{scialom2020mlsum,62 title={MLSUM: The Multilingual Summarization Corpus},63 author={Scialom et al. (2020)},64 year={2020},65 note={arXiv:2004.14900}66}67```6869- arXiv: 2004.14900