Datasets:
Commit ·
4072d52
1
Parent(s): 28e4b60
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,4 +9,26 @@ tags:
|
|
| 9 |
- GENRE
|
| 10 |
- BLINK
|
| 11 |
pretty_name: Entity Disambiguation
|
| 12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- GENRE
|
| 10 |
- BLINK
|
| 11 |
pretty_name: Entity Disambiguation
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
Entity Disambiguation datasets as provided in the [GENRE](https://github.com/facebookresearch/GENRE/blob/main/scripts_genre/download_all_datasets.sh) repo. The dataset can be used to train and evaluate entity disambiguators.
|
| 15 |
+
|
| 16 |
+
The datasets can be imported easily as follows:
|
| 17 |
+
|
| 18 |
+
```
|
| 19 |
+
from datasets import load_dataset
|
| 20 |
+
|
| 21 |
+
ds = load_dataset("boragokbakan/entity_disambiguation", "aida")
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
Available dataset names are:
|
| 25 |
+
- `blink`
|
| 26 |
+
- `ace2004`
|
| 27 |
+
- `aida`
|
| 28 |
+
- `aquaint`
|
| 29 |
+
- `blink`
|
| 30 |
+
- `clueweb`
|
| 31 |
+
- `msnbc`
|
| 32 |
+
- `wiki`
|
| 33 |
+
|
| 34 |
+
**Note:** As the BLINK training set is very large in size (~10GB), it is advised to set `streaming=True` when calling `load_dataset`.
|