Create README
Browse files
README
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "XSum"
|
| 3 |
+
license: "unknown"
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- summarization
|
| 8 |
+
- news
|
| 9 |
+
- text
|
| 10 |
+
task_categories:
|
| 11 |
+
- summarization
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# XSum
|
| 15 |
+
|
| 16 |
+
This repository hosts a copy of the **XSum (Extreme Summarization)** dataset,
|
| 17 |
+
a benchmark for single-sentence abstractive summarization of news articles.
|
| 18 |
+
|
| 19 |
+
Each example typically contains a news article and a one-sentence summary.
|
| 20 |
+
|
| 21 |
+
## Contents
|
| 22 |
+
Typical splits:
|
| 23 |
+
|
| 24 |
+
- `train`
|
| 25 |
+
- `validation`
|
| 26 |
+
- `test`
|
| 27 |
+
|
| 28 |
+
A typical entry contains:
|
| 29 |
+
```json
|
| 30 |
+
{
|
| 31 |
+
"document": "...",
|
| 32 |
+
"summary": "...",
|
| 33 |
+
"id": "..."
|
| 34 |
+
}
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Usage
|
| 38 |
+
```python
|
| 39 |
+
from datasets import load_dataset
|
| 40 |
+
ds = load_dataset("EdinburghNLP/xsum")
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
## Source
|
| 44 |
+
This dataset is taken from the Hugging Face dataset repository:
|
| 45 |
+
https://huggingface.co/datasets/EdinburghNLP/xsum
|
| 46 |
+
|
| 47 |
+
## License
|
| 48 |
+
The Hugging Face dataset card lists the license as **unknown**.
|
| 49 |
+
Please review the dataset’s original sources and terms of use before redistribution or commercial use.
|