Datasets:

Modalities:
Text
Formats:
parquet
xsum / README
JoyCountMost's picture
Create README
0e98018 verified
raw
history blame contribute delete
945 Bytes
---
pretty_name: "XSum"
license: "unknown"
language:
- en
tags:
- summarization
- news
- text
task_categories:
- summarization
---
# XSum
This repository hosts a copy of the **XSum (Extreme Summarization)** dataset,
a benchmark for single-sentence abstractive summarization of news articles.
Each example typically contains a news article and a one-sentence summary.
## Contents
Typical splits:
- `train`
- `validation`
- `test`
A typical entry contains:
```json
{
"document": "...",
"summary": "...",
"id": "..."
}
```
## Usage
```python
from datasets import load_dataset
ds = load_dataset("EdinburghNLP/xsum")
```
## Source
This dataset is taken from the Hugging Face dataset repository:
https://huggingface.co/datasets/EdinburghNLP/xsum
## License
The Hugging Face dataset card lists the license as **unknown**.
Please review the dataset’s original sources and terms of use before redistribution or commercial use.