Datasets:
File size: 1,523 Bytes
1f005d2 98a18b9 b8196ca 1f005d2 b8196ca f67a5c8 b8196ca 9edda02 b8196ca 98a18b9 |
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
---
dataset_info:
features:
- name: wiki_title
dtype: string
- name: popularity
dtype: int64
- name: qid
dtype: string
splits:
- name: en
num_bytes: 1049005
num_examples: 26270
download_size: 819673
dataset_size: 1049005
configs:
- config_name: default
data_files:
- split: en
path: data/en-*
license: mit
language:
- en
tags:
- Wikipedia
- Entity
- QID
- Popularity
- Knowledge
---
# Entity Popularity Dataset
This dataset contains information for about 26,000 entities, including the Wikipedia article title, QID, and the annual article view count for the year 2021.
The annual article view count can be considered as an indicator of the popularity of a entity.
## Languages
This dataset is composed in English.
## Dataset Structure
```python
from datasets import load_dataset
dataset = load_dataset("masaki-sakata/entity_popularity")["en"]
print(dataset)
# Dataset({
# features: ['wiki_title', 'popularity', 'qid'],
# num_rows: 26270
# })
```
Each line in the dataset has the following attributes:
- `wiki_title`: The title of the Wikipedia page.
- `popularity`: The popularity score. This value represents the annual page views for the Wikipedia article corresponding to the `wiki_title`, obtained using the Wikipedia API for the year 2021.
- `qid`: The unique identifier of the item in [Wikidata](https://www.wikidata.org/wiki/Wikidata:Main_Page).
Here is an example:
```json
{"wiki_title":"FC Barcelona","popularity":5389420.0,"qid":"Q7156"}
``` |