资源简介:
---
language:
- en
tags:
- wikipedia
---
# Dataset Description
This dataset contains the first paragraph of cleaned Wikipedia articles in English.
It was obtained by transorming the [Wikipedia](https://huggingface.co/datasets/wikipedia) "20220301.en" dataset as follows:
```python
from datasets import load_dataset
dataset = load_dataset("wikipedia", "20220301.en")["train"]
def get_first_paragraph(example):
example["text"] = example['text'].split('\n\n')[0]
return example
dataset = dataset.map(get_first_paragraph)
```
# Why use this dataset?
The size of the original English Wikipedia dataset is over 20GB. It takes 20min to load it on a Google Colab notebook and running computations on that dataset can be costly.
If you want to create a use case that mostly needs the information in the first paragraph of a Wikipedia article (which is the paragraph with the most important information), this 'wikipedia-first-paragraph' dataset is for you.
Its size is 1.39GB and it takes 5 min to load it on a Google colab notebook.
# How to load dataset
You can load it by runnning:
```python
from datasets import load_dataset
load_dataset("abokbot/wikipedia-first-paragraph")
```
# Dataset Structure
An example looks as follows:
```
{
'id': '12',
'url': 'https://en.wikipedia.org/wiki/Anarchism',
'title': 'Anarchism',
'text': 'Anarchism is a political philosophy and movement that is sceptical of authority and rejects \
all involuntary, coercive forms of hierarchy. Anarchism calls for the abolition of the state, \
which it holds to be unnecessary, undesirable, and harmful. As a historically left-wing movement, \
placed on the farthest left of the political spectrum, it is usually described alongside communalism \
and libertarian Marxism as the libertarian wing (libertarian socialism) of the socialist movement, and \
has a strong historical association with anti-capitalism and socialism.'
}
```
---
语言:
- 英语
标签:
- 维基百科
---
# 数据集描述
本数据集收录经清洗处理的英文维基百科(Wikipedia)条目首段文本。
本数据集通过对[维基百科(Wikipedia)](https://huggingface.co/datasets/wikipedia)的「20220301.en」数据集执行如下转换流程得到:
python
from datasets import load_dataset
dataset = load_dataset("wikipedia", "20220301.en")["train"]
def get_first_paragraph(example):
example["text"] = example['text'].split('
')[0]
return example
dataset = dataset.map(get_first_paragraph)
# 为何选用本数据集
原始英文维基百科数据集的体积超过20GB,在Google Colab笔记本中加载需耗时20分钟,且在该数据集上运行计算的成本较高。
若你的应用场景主要需要维基百科条目首段(即承载核心信息的段落)中的内容,那么这款「wikipedia-first-paragraph」数据集便是你的理想选择。
本数据集体积仅1.39GB,在Google Colab笔记本中加载仅需5分钟。
# 数据集加载方式
可通过运行以下代码加载本数据集:
python
from datasets import load_dataset
load_dataset("abokbot/wikipedia-first-paragraph")
# 数据集结构
单条数据示例如下:
{
'id': '12',
'url': 'https://en.wikipedia.org/wiki/Anarchism',
'title': 'Anarchism',
'text': 'Anarchism is a political philosophy and movement that is sceptical of authority and rejects
all involuntary, coercive forms of hierarchy. Anarchism calls for the abolition of the state,
which it holds to be unnecessary, undesirable, and harmful. As a historically left-wing movement,
placed on the farthest left of the political spectrum, it is usually described alongside communalism
and libertarian Marxism as the libertarian wing (libertarian socialism) of the socialist movement, and
has a strong historical association with anti-capitalism and socialism.'
}