Datasets:

Modalities:
Text
Formats:
parquet
File size: 945 Bytes
0e98018
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
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.