Datasets:
Tasks:
Text Classification
Sub-tasks:
multi-class-classification
Size:
100K<n<1M
ArXiv:
Tags:
relation extraction
License:
Update multitacred.py
Browse files- multitacred.py +11 -11
multitacred.py
CHANGED
|
@@ -81,18 +81,19 @@ _CITATION = """\
|
|
| 81 |
"""
|
| 82 |
|
| 83 |
_DESCRIPTION = """\
|
| 84 |
-
MultiTACRED is a multilingual version of the large-scale
|
| 85 |
-
|
| 86 |
-
Speech & Language Technology group of DFKI by machine-translating the
|
| 87 |
-
automatically projecting their entity annotations. For details of the
|
| 88 |
-
annotation process, see the
|
| 89 |
-
validated by checking the correctness of the XML tag markup. Any translations with an
|
| 90 |
-
missing or invalid head or tail tag pairs, are discarded (on average, 2.3% of the
|
|
|
|
| 91 |
|
| 92 |
Languages covered are: Arabic, Chinese, Finnish, French, German, Hindi, Hungarian, Japanese, Polish,
|
| 93 |
Russian, Spanish, Turkish. Intended use is supervised relation classification. Audience - researchers.
|
| 94 |
|
| 95 |
-
Please see
|
| 96 |
|
| 97 |
NOTE: This Datasetreader supports a reduced version of the original TACRED JSON format with the following changes:
|
| 98 |
- Removed fields: stanford_pos, stanford_ner, stanford_head, stanford_deprel, docid
|
|
@@ -108,9 +109,8 @@ _generate_examples()):
|
|
| 108 |
NOTE 2: The MultiTACRED dataset offers an additional 'split', namely the backtranslated test data (translated to a
|
| 109 |
target language and then back to English). To access this split, use dataset['backtranslated_test'].
|
| 110 |
|
| 111 |
-
You can find the TACRED dataset reader for the English version of the dataset
|
| 112 |
-
|
| 113 |
-
|
| 114 |
"""
|
| 115 |
|
| 116 |
_HOMEPAGE = "https://github.com/DFKI-NLP/MultiTACRED"
|
|
|
|
| 81 |
"""
|
| 82 |
|
| 83 |
_DESCRIPTION = """\
|
| 84 |
+
MultiTACRED is a multilingual version of the large-scale TAC Relation Extraction Dataset
|
| 85 |
+
(https://nlp.stanford.edu/projects/tacred). It covers 12 typologically diverse languages from 9 language families,
|
| 86 |
+
and was created by the Speech & Language Technology group of DFKI (https://www.dfki.de/slt) by machine-translating the
|
| 87 |
+
instances of the original TACRED dataset and automatically projecting their entity annotations. For details of the
|
| 88 |
+
original TACRED's data collection and annotation process, see the Stanford paper (https://aclanthology.org/D17-1004/).
|
| 89 |
+
Translations are syntactically validated by checking the correctness of the XML tag markup. Any translations with an
|
| 90 |
+
invalid tag structure, e.g. missing or invalid head or tail tag pairs, are discarded (on average, 2.3% of the
|
| 91 |
+
instances).
|
| 92 |
|
| 93 |
Languages covered are: Arabic, Chinese, Finnish, French, German, Hindi, Hungarian, Japanese, Polish,
|
| 94 |
Russian, Spanish, Turkish. Intended use is supervised relation classification. Audience - researchers.
|
| 95 |
|
| 96 |
+
Please see our ACL paper (https://arxiv.org/abs/2305.04582) for full details.
|
| 97 |
|
| 98 |
NOTE: This Datasetreader supports a reduced version of the original TACRED JSON format with the following changes:
|
| 99 |
- Removed fields: stanford_pos, stanford_ner, stanford_head, stanford_deprel, docid
|
|
|
|
| 109 |
NOTE 2: The MultiTACRED dataset offers an additional 'split', namely the backtranslated test data (translated to a
|
| 110 |
target language and then back to English). To access this split, use dataset['backtranslated_test'].
|
| 111 |
|
| 112 |
+
You can find the TACRED dataset reader for the English version of the dataset at
|
| 113 |
+
https://huggingface.co/datasets/DFKI-SLT/tacred.
|
|
|
|
| 114 |
"""
|
| 115 |
|
| 116 |
_HOMEPAGE = "https://github.com/DFKI-NLP/MultiTACRED"
|