Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
json
Sub-tasks:
named-entity-recognition
Size:
1M - 10M
Tags:
structure-prediction
License:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,119 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- machine-generated
|
4 |
+
language_creators:
|
5 |
+
- machine-generated
|
6 |
+
language:
|
7 |
+
- de
|
8 |
+
- en
|
9 |
+
- es
|
10 |
+
- fr
|
11 |
+
- it
|
12 |
+
- nl
|
13 |
+
- pl
|
14 |
+
- pt
|
15 |
+
- ru
|
16 |
+
- zh
|
17 |
+
license:
|
18 |
+
- cc-by-nc-sa-4.0
|
19 |
+
multilinguality:
|
20 |
+
- multilingual
|
21 |
+
source_datasets:
|
22 |
+
- original
|
23 |
+
task_categories:
|
24 |
+
- token-classification
|
25 |
+
task_ids:
|
26 |
+
- named-entity-recognition
|
27 |
+
pretty_name: multinerd-dataset
|
28 |
+
tags:
|
29 |
+
- structure-prediction
|
30 |
---
|
31 |
+
|
32 |
+
## Table of Contents
|
33 |
+
- [Description](#description)
|
34 |
+
- [Dataset Structure](#dataset-structure)
|
35 |
+
- [Additional Information](#additional-information)
|
36 |
+
|
37 |
+
## Dataset Card for MultiNERD dataset
|
38 |
+
|
39 |
+
## Dataset Description
|
40 |
+
|
41 |
+
- **Summary:** Training data for fine-grained NER in 10 languages.
|
42 |
+
- **Repository:** [https://github.com/Babelscape/multinerd](https://github.com/Babelscape/multinerd)
|
43 |
+
- **Paper:** [https://aclanthology.org/multinerd](https://aclanthology.org/2022.findings-naacl.60/)
|
44 |
+
- **Point of Contact:** [tedeschi@babelscape.com](tedeschi@babelscape.com)
|
45 |
+
|
46 |
+
|
47 |
+
## Description
|
48 |
+
|
49 |
+
- **Summary:** In a nutshell, MultiNERD is the first **language-agnostic** methodology for automatically creating **multilingual, multi-genre and fine-grained annotations** for **Named Entity Recognition** and **Entity Disambiguation**. Specifically, it can be seen an extension of the combination of two prior works from our research group that are [WikiNEuRal](https://www.github.com/Babelscape/wikineural), from which we took inspiration for the state-of-the-art silver-data creation methodology, and [NER4EL](https://www.github.com/Babelscape/NER4EL), from which we took the fine-grained classes and inspiration for the entity linking part. The produced dataset covers: **10 languages** (Chinese, Dutch, English, French, German, Italian, Polish, Portuguese, Russian and Spanish), **15 NER categories** (Person (PER), Location (LOC), Organization (ORG}), Animal (ANIM), Biological entity (BIO), Celestial Body (CEL), Disease (DIS), Event (EVE), Food (FOOD), Instrument (INST), Media (MEDIA), Plant (PLANT), Mythological entity (MYTH), Time (TIME) and Vehicle (VEHI)), and **2 textual genres** ([Wikipedia](https://www.wikipedia.org/) and [WikiNews](https://www.wikinews.org/));
|
50 |
+
- **Repository:** [https://github.com/Babelscape/multinerd](https://github.com/Babelscape/multinerd)
|
51 |
+
- **Paper:** [https://aclanthology.org/multinerd](https://aclanthology.org/2022.findings-naacl.60/)
|
52 |
+
- **Point of Contact:** [tedeschi@babelscape.com](tedeschi@babelscape.com)
|
53 |
+
|
54 |
+
## Dataset Structure
|
55 |
+
|
56 |
+
The data fields are the same among all splits.
|
57 |
+
- `tokens`: a `list` of `string` features.
|
58 |
+
- `ner_tags`: a `list` of classification labels (`int`).
|
59 |
+
- `lang`: a `string` feature. Full list of language: Chinese (zh), Dutch (nl), English (en), French (fr), German (de), Italian (it), Polish (pl), Portugues (pt), Russian (ru), Spanish (es).
|
60 |
+
- The full tagset with indices is reported below:
|
61 |
+
```python
|
62 |
+
{
|
63 |
+
"O": 0,
|
64 |
+
"B-PER": 1,
|
65 |
+
"I-PER": 2,
|
66 |
+
"B-ORG": 3,
|
67 |
+
"I-ORG": 4,
|
68 |
+
"B-LOC": 5,
|
69 |
+
"I-LOC": 6,
|
70 |
+
"B-ANIM": 7,
|
71 |
+
"I-ANIM": 8,
|
72 |
+
"B-BIO": 9,
|
73 |
+
"I-BIO": 10,
|
74 |
+
"B-CEL": 11,
|
75 |
+
"I-CEL": 12,
|
76 |
+
"B-DIS": 13,
|
77 |
+
"I-DIS": 14,
|
78 |
+
"B-EVE": 15,
|
79 |
+
"I-EVE": 16,
|
80 |
+
"B-FOOD": 17,
|
81 |
+
"I-FOOD": 18,
|
82 |
+
"B-INST": 19,
|
83 |
+
"I-INST": 20,
|
84 |
+
"B-MEDIA": 21,
|
85 |
+
"I-MEDIA": 22,
|
86 |
+
"B-MYTH": 23,
|
87 |
+
"I-MYTH": 24,
|
88 |
+
"B-PLANT": 25,
|
89 |
+
"I-PLANT": 26,
|
90 |
+
"B-TIME": 27,
|
91 |
+
"I-TIME": 28,
|
92 |
+
"B-VEHI": 29,
|
93 |
+
"I-VEHI": 30,
|
94 |
+
}
|
95 |
+
```
|
96 |
+
|
97 |
+
## Additional Information
|
98 |
+
|
99 |
+
- **Licensing Information**: Contents of this repository are restricted to only non-commercial research purposes under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). Copyright of the dataset contents belongs to the original copyright holders.
|
100 |
+
|
101 |
+
- **Citation Information**: Please consider citing our work if you use data and/or code from this repository.
|
102 |
+
```bibtex
|
103 |
+
@inproceedings{tedeschi-navigli-2022-multinerd,
|
104 |
+
title = "{M}ulti{NERD}: A Multilingual, Multi-Genre and Fine-Grained Dataset for Named Entity Recognition (and Disambiguation)",
|
105 |
+
author = "Tedeschi, Simone and
|
106 |
+
Navigli, Roberto",
|
107 |
+
booktitle = "Findings of the Association for Computational Linguistics: NAACL 2022",
|
108 |
+
month = jul,
|
109 |
+
year = "2022",
|
110 |
+
address = "Seattle, United States",
|
111 |
+
publisher = "Association for Computational Linguistics",
|
112 |
+
url = "https://aclanthology.org/2022.findings-naacl.60",
|
113 |
+
doi = "10.18653/v1/2022.findings-naacl.60",
|
114 |
+
pages = "801--812",
|
115 |
+
abstract = "Named Entity Recognition (NER) is the task of identifying named entities in texts and classifying them through specific semantic categories, a process which is crucial for a wide range of NLP applications. Current datasets for NER focus mainly on coarse-grained entity types, tend to consider a single textual genre and to cover a narrow set of languages, thus limiting the general applicability of NER systems.In this work, we design a new methodology for automatically producing NER annotations, and address the aforementioned limitations by introducing a novel dataset that covers 10 languages, 15 NER categories and 2 textual genres.We also introduce a manually-annotated test set, and extensively evaluate the quality of our novel dataset on both this new test set and standard benchmarks for NER.In addition, in our dataset, we include: i) disambiguation information to enable the development of multilingual entity linking systems, and ii) image URLs to encourage the creation of multimodal systems.We release our dataset at https://github.com/Babelscape/multinerd.",
|
116 |
+
}
|
117 |
+
```
|
118 |
+
- **Contributions**: Thanks to [@sted97](https://github.com/sted97) for adding this dataset.
|
119 |
+
|