gsarti commited on
Commit
5741117
1 Parent(s): ca05673

Added readme

Browse files
Files changed (1) hide show
  1. README.md +137 -1
README.md CHANGED
@@ -1,3 +1,139 @@
1
  ---
2
- license: gpl-3.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - expert-generated
6
+ - machine-generated
7
+ languages:
8
+ - en
9
+ - nl
10
+ licenses:
11
+ - apache-2.0
12
+ multilinguality:
13
+ - translation
14
+ pretty_name: iknlp22-transqe
15
+ size_categories:
16
+ - unknown
17
+ source_datasets:
18
+ - extended|esnli
19
+ task_categories:
20
+ - text-classification
21
+ task_ids:
22
+ - natural-language-inference
23
+ - text-classification-other-quality-estimation
24
  ---
25
+ # Dataset Card for IK-NLP-22 Project 3: Translation Quality-driven Data Selection for Natural Language Inference
26
+ ## Table of Contents
27
+ - [Dataset Card for IK-NLP-22 Project 3: Translation Quality-driven Data Selection for Natural Language Inference](#dataset-card-for-ik-nlp-22-project-3-translation-quality-driven-data-selection-for-natural-language-inference)
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Languages](#languages)
32
+ - [Dataset Structure](#dataset-structure)
33
+ - [Data Instances](#data-instances)
34
+ - [Data Splits](#data-splits)
35
+ - [Dataset Creation](#dataset-creation)
36
+ - [Additional Information](#additional-information)
37
+ - [Dataset Curators](#dataset-curators)
38
+ - [Licensing Information](#licensing-information)
39
+ - [Citation Information](#citation-information)
40
+ ## Dataset Description
41
+ - **Source:** [Github](https://github.com/OanaMariaCamburu/e-SNLI)
42
+ - **Point of Contact:** [Gabriele Sarti](mailto:ik-nlp-course@rug.nl)
43
+ ### Dataset Summary
44
+ This dataset contains the full [e-SNLI](https://huggingface.co/datasets/esnli) dataset, automatically translated to Dutch using the [Helsinki-NLP/opus-mt-en-nl](https://huggingface.co/Helsinki-NLP/opus-mt-en-nl) neural machine translation model. The translation of each field has been anotated with two quality estimation scores using the referenceless version of the [COMET](https://github.com/Unbabel/COMET/) metric by Unbabel.
45
+
46
+ The intended usage of this corpus is restricted to the scope of final project for the 2022 edition of the Natural Language Processing course at the Information Science Master's Degree (IK) at the University of Groningen, taught by [Arianna Bisazza](https://research.rug.nl/en/persons/arianna-bisazza) and [Gabriele Sarti](https://research.rug.nl/en/persons/gabriele-sarti), with the assistance of [Anjali Nair](https://nl.linkedin.com/in/anjalinair012).
47
+
48
+ *The e-SNLI corpus was made freely available by the authors on Github. The present dataset was created for educational purposes, and is based on the original e-SNLI dataset by Camburu et al..All rights of the present contents are attributed to the original authors.*
49
+
50
+ ### Languages
51
+ The language data of this corpus is in English (BCP-47 `en`) and Dutch (BCP-47 `nl`).
52
+ ## Dataset Structure
53
+ ### Data Instances
54
+ The dataset contains a single configuration, named `plain_text`, containing the following fields:
55
+
56
+ - `premise_en`: The original English premise.
57
+
58
+ - `premise_nl`: The premise automatically translated to Dutch.
59
+
60
+ - `hypothesis_en`: The original English hypothesis.
61
+
62
+ - `hypothesis_nl`: The hypothesis automatically translated to Dutch.
63
+
64
+ - `label`: The label of the data instance (0 for entailment, 1 for neutral, 2 for contradiction).
65
+
66
+ - `explanation_1_en`: The first explanation for the assigned label in English.
67
+
68
+ - `explanation_1_nl`: The first explanation automatically translated to Dutch.
69
+
70
+ - `explanation_2_en`: The second explanation for the assigned label in English.
71
+
72
+ - `explanation_2_nl`: The second explanation automatically translated to Dutch.
73
+
74
+ - `explanation_3_en`: The third explanation for the assigned label in English.
75
+
76
+ - `explanation_3_nl`: The third explanation automatically translated to Dutch.
77
+
78
+ - `da_premise`: The quality estimation produced by the `wmt20-comet-qe-da` model for the premise translation.
79
+
80
+ - `da_hypothesis`: The quality estimation produced by the `wmt20-comet-qe-da` model for the hypothesis translation.
81
+
82
+ - `da_explanation_1`: The quality estimation produced by the `wmt20-comet-qe-da` model for the first explanation translation.
83
+
84
+ - `da_explanation_2`: The quality estimation produced by the `wmt20-comet-qe-da` model for the second explanation translation.
85
+
86
+ - `da_explanation_3`: The quality estimation produced by the `wmt20-comet-qe-da` model for the third explanation translation.
87
+
88
+ - `mqm_premise`: The quality estimation produced by the `wmt21-comet-qe-mqm` model for the premise translation.
89
+
90
+ - `mqm_hypothesis`: The quality estimation produced by the `wmt21-comet-qe-mqm` model for the hypothesis translation.
91
+
92
+ - `mqm_explanation_1`: The quality estimation produced by the `wmt21-comet-qe-mqm` model for the first explanation translation.
93
+
94
+ - `mqm_explanation_2`: The quality estimation produced by the `wmt21-comet-qe-mqm` model for the second explanation translation.
95
+
96
+ - `mqm_explanation_3`: The quality estimation produced by the `wmt21-comet-qe-mqm` model for the third explanation translation.
97
+
98
+ ### Data Splits
99
+
100
+ | config| train | validation | test |
101
+ |------------:|---------|------------|------|
102
+ |`plain_text` | 549'367 | 9842 | 9824 |
103
+
104
+ For your analyses, use the amount of data that is the most reasonable for your computational setup. The more, the better.
105
+
106
+ ### Dataset Creation
107
+
108
+ The dataset was created through the following steps:
109
+
110
+ - Translating every field of the original e-SNLI corpus to Dutch using the [Helsinki-NLP/opus-mt-en-nl](https://huggingface.co/Helsinki-NLP/opus-mt-en-nl) neural machine translation model.
111
+
112
+ - Annotating the quality estimation of the translations with two referenceless versions of the [COMET](https://github.com/Unbabel/COMET/) metric by Unbabel.
113
+
114
+ ## Additional Information
115
+
116
+ ### Dataset Curators
117
+
118
+ For problems on this 🤗 Datasets version, please contact us at [ik-nlp-course@rug.nl](mailto:ik-nlp-course@rug.nl).
119
+
120
+ ### Licensing Information
121
+
122
+ The dataset is licensed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0.html).
123
+
124
+ ### Citation Information
125
+
126
+ Please cite the authors if you use these corpora in your work:
127
+
128
+ ```bibtex
129
+ @incollection{NIPS2018_8163,
130
+ title = {e-SNLI: Natural Language Inference with Natural Language Explanations},
131
+ author = {Camburu, Oana-Maria and Rockt\"{a}schel, Tim and Lukasiewicz, Thomas and Blunsom, Phil},
132
+ booktitle = {Advances in Neural Information Processing Systems 31},
133
+ editor = {S. Bengio and H. Wallach and H. Larochelle and K. Grauman and N. Cesa-Bianchi and R. Garnett},
134
+ pages = {9539--9549},
135
+ year = {2018},
136
+ publisher = {Curran Associates, Inc.},
137
+ url = {http://papers.nips.cc/paper/8163-e-snli-natural-language-inference-with-natural-language-explanations.pdf}
138
+ }
139
+ ```