qanastek commited on
Commit
7ed9163
1 Parent(s): ff039ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +234 -236
README.md CHANGED
@@ -1,236 +1,234 @@
1
- ---
2
- annotations_creators:
3
- - machine-generated
4
- - expert-generated
5
- language_creators:
6
- - found
7
- languages:
8
- - bg
9
- - cs
10
- - da
11
- - de
12
- - el
13
- - en
14
- - es
15
- - et
16
- - fi
17
- - fr
18
- - hu
19
- - it
20
- - lt
21
- - lv
22
- - mt
23
- - nl
24
- - pl
25
- - pt
26
- - ro
27
- - sk
28
- - sl
29
- - sv
30
- licenses:
31
- - cc-by-4-0
32
- multilinguality:
33
- - bg
34
- - cs
35
- - da
36
- - de
37
- - el
38
- - en
39
- - es
40
- - et
41
- - fi
42
- - fr
43
- - hu
44
- - it
45
- - lt
46
- - lv
47
- - mt
48
- - nl
49
- - pl
50
- - pt
51
- - ro
52
- - sk
53
- - sl
54
- - sv
55
- pretty_name: EMEA-V3
56
- size_categories:
57
- - 100K<n<1M
58
- source_datasets:
59
- - extended
60
- task_categories:
61
- - translation
62
- - machine-translation
63
- task_ids:
64
- - translation
65
- - machine-translation
66
- ---
67
-
68
- # EMEA-V3 : European parallel translation corpus from the European Medicines Agency
69
-
70
- ## Table of Contents
71
- - [Dataset Card for [Needs More Information]](#dataset-card-for-needs-more-information)
72
- - [Table of Contents](#table-of-contents)
73
- - [Dataset Description](#dataset-description)
74
- - [Dataset Summary](#dataset-summary)
75
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
76
- - [Languages](#languages)
77
- - [Dataset Structure](#dataset-structure)
78
- - [Data Instances](#data-instances)
79
- - [Data Fields](#data-fields)
80
- - [Data Splits](#data-splits)
81
- - [Dataset Creation](#dataset-creation)
82
- - [Curation Rationale](#curation-rationale)
83
- - [Source Data](#source-data)
84
- - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
85
- - [Who are the source language producers?](#who-are-the-source-language-producers)
86
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
87
- - [Considerations for Using the Data](#considerations-for-using-the-data)
88
- - [Other Known Limitations](#other-known-limitations)
89
- - [Additional Information](#additional-information)
90
- - [Dataset Curators](#dataset-curators)
91
- - [Licensing Information](#licensing-information)
92
- - [Citation Information](#citation-information)
93
-
94
- ## Dataset Description
95
-
96
- - **Homepage:** https://qanastek.github.io/EMEA-V3/
97
- - **Repository:** https://github.com/qanastek/EMEA-V3/
98
- - **Paper:** https://aclanthology.org/L12-1246/
99
- - **Leaderboard:** [Needs More Information]
100
- - **Point of Contact:** [Yanis Labrak](mailto:yanis.labrak@univ-avignon.fr)
101
-
102
-
103
-
104
-
105
-
106
-
107
- ### Dataset Summary
108
-
109
- `EMEA-V3` is a parallel corpus for neural machine translation collected and aligned by [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se) during the [OPUS project](https://opus.nlpl.eu/).
110
-
111
- ### Supported Tasks and Leaderboards
112
-
113
- `translation`: The dataset can be used to train a model for translation.
114
-
115
- ### Languages
116
-
117
- In our case, the corpora consists of a pair of source and target sentences for all 22 different languages from the European Union (EU).
118
-
119
- **List of languages :** `Bulgarian (bg)`,`Czech (cs)`,`Danish (da)`,`German (de)`,`Greek (el)`,`English (en)`,`Spanish (es)`,`Estonian (et)`,`Finnish (fi)`,`French (fr)`,`Hungarian (hu)`,`Italian (it)`,`Lithuanian (lt)`,`Latvian (lv)`,`Maltese (mt)`,`Dutch (nl)`,`Polish (pl)`,`Portuguese (pt)`,`Romanian (ro)`,`Slovak (sk)`,`Slovenian (sl)`,`Swedish (sv)`.
120
-
121
- ## Load the dataset with HuggingFace
122
-
123
- ```python
124
- from datasets import load_dataset
125
- dataset = load_dataset("qanastek/EMEA-V3", split='train', download_mode='force_redownload')
126
- print(dataset)
127
- print(dataset[0])
128
- ```
129
-
130
- ## Dataset Structure
131
-
132
- ### Data Instances
133
-
134
- ```plain
135
- lang,source_text,target_text
136
- bg-cs,EMEA/ H/ C/ 471,EMEA/ H/ C/ 471
137
- bg-cs,ABILIFY,ABILIFY
138
- bg-cs,Какво представлява Abilify?,Co je Abilify?
139
- bg-cs,"Abilify е лекарство, съдържащо активното вещество арипипразол.","Abilify je léčivý přípravek, který obsahuje účinnou látku aripiprazol."
140
- bg-cs,"Предлага се под формата на таблетки от 5 mg, 10 mg, 15 mg и 30 mg, като диспергиращи се таблетки (таблетки, които се разтварят в устата) от 10 mg, 15 mg и 30 mg, като перорален разтвор (1 mg/ ml) и като инжекционен разтвор (7, 5 mg/ ml).","Je dostupný ve formě tablet s obsahem 5 mg, 10 mg, 15 mg a 30 mg, ve formě tablet dispergovatelných v ústech (tablet, které se rozpustí v ústech) s obsahem 10 mg, 15 mg a 30 mg, jako perorální roztok (1 mg/ ml) nebo jako injekční roztok (7, 5 mg/ ml)."
141
- bg-cs,За какво се използва Abilify?,Na co se přípravek Abilify používá?
142
- ```
143
-
144
- ### Data Fields
145
-
146
- **lang** : The pair of source and target language of type `String`.
147
-
148
- **source_text** : The source text of type `String`.
149
-
150
- **target_text** : The target text of type `String`.
151
-
152
- ### Data Splits
153
-
154
- | | bg | cs | da | de | el | en | es | et | fi | fr | hu | it | lt | lv | mt | nl | pl | pt | ro | sk | sl | sv |
155
- |--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
156
- | **bg** | 0 | 342378 | 349675 | 348061 | 355696 | 333066 | 349936 | 336142 | 341732 | 358045 | 352763 | 351669 | 348679 | 342721 | 351097 | 353942 | 355005 | 347925 | 351099 | 345572 | 346954 | 342927 |
157
- | **cs** | 342378 | 0 | 354824 | 353397 | 364609 | 335716 | 356506 | 340309 | 349040 | 363614 | 358353 | 357578 | 353232 | 347807 | 334353 | 355192 | 358357 | 351244 | 330447 | 346835 | 348411 | 346894 |
158
- | **da** | 349675 | 354824 | 0 | 387202 | 397654 | 360186 | 387329 | 347391 | 379830 | 396294 | 367091 | 388495 | 360572 | 353801 | 342263 | 388250 | 368779 | 382576 | 340508 | 356890 | 357694 | 373510 |
159
- | **de** | 348061 | 353397 | 387202 | 0 | 390281 | 364005 | 386335 | 346166 | 378626 | 393468 | 366828 | 381396 | 360907 | 353151 | 340294 | 377770 | 367080 | 381365 | 337562 | 355805 | 358700 | 376925 |
160
- | **el** | 355696 | 364609 | 397654 | 390281 | 0 | 372824 | 393051 | 354874 | 384889 | 403248 | 373706 | 391389 | 368576 | 360047 | 348221 | 396284 | 372486 | 387170 | 342655 | 364959 | 363778 | 384569 |
161
- | **en** | 333066 | 335716 | 360186 | 364005 | 372824 | 0 | 366769 | 333667 | 357177 | 373152 | 349176 | 361089 | 339899 | 336306 | 324695 | 360418 | 348450 | 361393 | 321233 | 338649 | 338195 | 352587 |
162
- | **es** | 349936 | 356506 | 387329 | 386335 | 393051 | 366769 | 0 | 348454 | 378158 | 394253 | 368203 | 378076 | 360645 | 354126 | 340297 | 381188 | 367091 | 376443 | 337302 | 358745 | 357961 | 379462 |
163
- | **et** | 336142 | 340309 | 347391 | 346166 | 354874 | 333667 | 348454 | 0 | 341694 | 358012 | 352099 | 351747 | 345417 | 339042 | 337302 | 350911 | 354329 | 345856 | 325992 | 343950 | 342787 | 340761 |
164
- | **fi** | 341732 | 349040 | 379830 | 378626 | 384889 | 357177 | 378158 | 341694 | 0 | 387478 | 358869 | 379862 | 352968 | 346820 | 334275 | 379729 | 358760 | 374737 | 331135 | 348559 | 348680 | 368528 |
165
- | **fr** | 358045 | 363614 | 396294 | 393468 | 403248 | 373152 | 394253 | 358012 | 387478 | 0 | 373625 | 385869 | 368817 | 361137 | 347699 | 388607 | 372387 | 388658 | 344139 | 363249 | 366474 | 383274 |
166
- | **hu** | 352763 | 358353 | 367091 | 366828 | 373706 | 349176 | 368203 | 352099 | 358869 | 373625 | 0 | 367937 | 361015 | 354872 | 343831 | 368387 | 369040 | 361652 | 340410 | 357466 | 361157 | 356426 |
167
- | **it** | 351669 | 357578 | 388495 | 381396 | 391389 | 361089 | 378076 | 351747 | 379862 | 385869 | 367937 | 0 | 360783 | 356001 | 341552 | 384018 | 365159 | 378841 | 337354 | 357562 | 358969 | 377635 |
168
- | **lt** | 348679 | 353232 | 360572 | 360907 | 368576 | 339899 | 360645 | 345417 | 352968 | 368817 | 361015 | 360783 | 0 | 350576 | 337339 | 362096 | 361497 | 357070 | 335581 | 351639 | 350916 | 349636 |
169
- | **lv** | 342721 | 347807 | 353801 | 353151 | 360047 | 336306 | 354126 | 339042 | 346820 | 361137 | 354872 | 356001 | 350576 | 0 | 336157 | 355791 | 358607 | 349590 | 329581 | 348689 | 346862 | 345016 |
170
- | **mt** | 351097 | 334353 | 342263 | 340294 | 348221 | 324695 | 340297 | 337302 | 334275 | 347699 | 343831 | 341552 | 337339 | 336157 | 0 | 341111 | 344764 | 335553 | 338137 | 335930 | 334491 | 335353 |
171
- | **nl** | 353942 | 355192 | 388250 | 377770 | 396284 | 360418 | 381188 | 350911 | 379729 | 388607 | 368387 | 384018 | 362096 | 355791 | 341111 | 0 | 369694 | 383913 | 339047 | 359126 | 360054 | 379771 |
172
- | **pl** | 355005 | 358357 | 368779 | 367080 | 372486 | 348450 | 367091 | 354329 | 358760 | 372387 | 369040 | 365159 | 361497 | 358607 | 344764 | 369694 | 0 | 357426 | 335243 | 352527 | 355534 | 353214 |
173
- | **pt** | 347925 | 351244 | 382576 | 381365 | 387170 | 361393 | 376443 | 345856 | 374737 | 388658 | 361652 | 378841 | 357070 | 349590 | 335553 | 383913 | 357426 | 0 | 333365 | 354784 | 352673 | 373392 |
174
- | **ro** | 351099 | 330447 | 340508 | 337562 | 342655 | 321233 | 337302 | 325992 | 331135 | 344139 | 340410 | 337354 | 335581 | 329581 | 338137 | 339047 | 335243 | 333365 | 0 | 332373 | 330329 | 331268 |
175
- | **sk** | 345572 | 346835 | 356890 | 355805 | 364959 | 338649 | 358745 | 343950 | 348559 | 363249 | 357466 | 357562 | 351639 | 348689 | 335930 | 359126 | 352527 | 354784 | 332373 | 0 | 348396 | 346855 |
176
- | **sl** | 346954 | 348411 | 357694 | 358700 | 363778 | 338195 | 357961 | 342787 | 348680 | 366474 | 361157 | 358969 | 350916 | 346862 | 334491 | 360054 | 355534 | 352673 | 330329 | 348396 | 0 | 347727 |
177
- | **sv** | 342927 | 346894 | 373510 | 376925 | 384569 | 352587 | 379462 | 340761 | 368528 | 383274 | 356426 | 377635 | 349636 | 345016 | 335353 | 379771 | 353214 | 373392 | 331268 | 346855 | 347727 | 0 |
178
-
179
- ## Dataset Creation
180
-
181
- ### Curation Rationale
182
-
183
- For details, check the corresponding [pages](https://opus.nlpl.eu/EMEA.php).
184
-
185
- ### Source Data
186
-
187
- <!-- #### Initial Data Collection and Normalization
188
-
189
- ddd -->
190
-
191
- #### Who are the source language producers?
192
-
193
- Every data of this corpora as been uploaded by [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se) on [Opus](https://opus.nlpl.eu/EMEA.php).
194
-
195
- ### Personal and Sensitive Information
196
-
197
- The corpora is free of personal or sensitive information.
198
-
199
- ## Considerations for Using the Data
200
-
201
- ### Other Known Limitations
202
-
203
- The nature of the task introduce a variability in the quality of the target translations.
204
-
205
- ## Additional Information
206
-
207
- ### Dataset Curators
208
-
209
- __Hugging Face EMEA-V3__: Labrak Yanis, Dufour Richard (Not affiliated with the original corpus)
210
-
211
- __OPUS : Parallel Data, Tools and Interfaces in OPUS__: [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se).
212
-
213
- <!-- ### Licensing Information
214
-
215
- ddd -->
216
-
217
- ### Citation Information
218
-
219
- Please cite the following paper when using this dataset.
220
-
221
- ```latex
222
- @inproceedings{tiedemann-2012-parallel,
223
- title = Parallel Data, Tools and Interfaces in OPUS,
224
- author = {
225
- Tiedemann, Jorg
226
- },
227
- booktitle = "Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC'12)",
228
- month = may,
229
- year = 2012,
230
- address = Istanbul, Turkey,
231
- publisher = European Language Resources Association (ELRA),
232
- url = http://www.lrec-conf.org/proceedings/lrec2012/pdf/463_Paper.pdf,
233
- pages = 2214--2218,
234
- abstract = This paper presents the current status of OPUS, a growing language resource of parallel corpora and related tools. The focus in OPUS is to provide freely available data sets in various formats together with basic annotation to be useful for applications in computational linguistics, translation studies and cross-linguistic corpus studies. In this paper, we report about new data sets and their features, additional annotation tools and models provided from the website and essential interfaces and on-line services included in the project.,
235
- }
236
- ```
1
+ ---
2
+ annotations_creators:
3
+ - machine-generated
4
+ - expert-generated
5
+ language_creators:
6
+ - found
7
+ languages:
8
+ - bg
9
+ - cs
10
+ - da
11
+ - de
12
+ - el
13
+ - en
14
+ - es
15
+ - et
16
+ - fi
17
+ - fr
18
+ - hu
19
+ - it
20
+ - lt
21
+ - lv
22
+ - mt
23
+ - nl
24
+ - pl
25
+ - pt
26
+ - ro
27
+ - sk
28
+ - sl
29
+ - sv
30
+ multilinguality:
31
+ - bg
32
+ - cs
33
+ - da
34
+ - de
35
+ - el
36
+ - en
37
+ - es
38
+ - et
39
+ - fi
40
+ - fr
41
+ - hu
42
+ - it
43
+ - lt
44
+ - lv
45
+ - mt
46
+ - nl
47
+ - pl
48
+ - pt
49
+ - ro
50
+ - sk
51
+ - sl
52
+ - sv
53
+ pretty_name: EMEA-V3
54
+ size_categories:
55
+ - 100K<n<1M
56
+ source_datasets:
57
+ - extended
58
+ task_categories:
59
+ - translation
60
+ - machine-translation
61
+ task_ids:
62
+ - translation
63
+ - machine-translation
64
+ ---
65
+
66
+ # EMEA-V3 : European parallel translation corpus from the European Medicines Agency
67
+
68
+ ## Table of Contents
69
+ - [Dataset Card for [Needs More Information]](#dataset-card-for-needs-more-information)
70
+ - [Table of Contents](#table-of-contents)
71
+ - [Dataset Description](#dataset-description)
72
+ - [Dataset Summary](#dataset-summary)
73
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
74
+ - [Languages](#languages)
75
+ - [Dataset Structure](#dataset-structure)
76
+ - [Data Instances](#data-instances)
77
+ - [Data Fields](#data-fields)
78
+ - [Data Splits](#data-splits)
79
+ - [Dataset Creation](#dataset-creation)
80
+ - [Curation Rationale](#curation-rationale)
81
+ - [Source Data](#source-data)
82
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
83
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
84
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
85
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
86
+ - [Other Known Limitations](#other-known-limitations)
87
+ - [Additional Information](#additional-information)
88
+ - [Dataset Curators](#dataset-curators)
89
+ - [Licensing Information](#licensing-information)
90
+ - [Citation Information](#citation-information)
91
+
92
+ ## Dataset Description
93
+
94
+ - **Homepage:** https://opus.nlpl.eu/EMEA.php
95
+ - **Repository:** https://github.com/qanastek/EMEA-V3/
96
+ - **Paper:** https://aclanthology.org/L12-1246/
97
+ - **Leaderboard:** [Needs More Information]
98
+ - **Point of Contact:** [Yanis Labrak](mailto:yanis.labrak@univ-avignon.fr)
99
+
100
+
101
+
102
+
103
+
104
+
105
+ ### Dataset Summary
106
+
107
+ `EMEA-V3` is a parallel corpus for neural machine translation collected and aligned by [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se) during the [OPUS project](https://opus.nlpl.eu/).
108
+
109
+ ### Supported Tasks and Leaderboards
110
+
111
+ `translation`: The dataset can be used to train a model for translation.
112
+
113
+ ### Languages
114
+
115
+ In our case, the corpora consists of a pair of source and target sentences for all 22 different languages from the European Union (EU).
116
+
117
+ **List of languages :** `Bulgarian (bg)`,`Czech (cs)`,`Danish (da)`,`German (de)`,`Greek (el)`,`English (en)`,`Spanish (es)`,`Estonian (et)`,`Finnish (fi)`,`French (fr)`,`Hungarian (hu)`,`Italian (it)`,`Lithuanian (lt)`,`Latvian (lv)`,`Maltese (mt)`,`Dutch (nl)`,`Polish (pl)`,`Portuguese (pt)`,`Romanian (ro)`,`Slovak (sk)`,`Slovenian (sl)`,`Swedish (sv)`.
118
+
119
+ ## Load the dataset with HuggingFace
120
+
121
+ ```python
122
+ from datasets import load_dataset
123
+ dataset = load_dataset("qanastek/EMEA-V3", split='train', download_mode='force_redownload')
124
+ print(dataset)
125
+ print(dataset[0])
126
+ ```
127
+
128
+ ## Dataset Structure
129
+
130
+ ### Data Instances
131
+
132
+ ```plain
133
+ lang,source_text,target_text
134
+ bg-cs,EMEA/ H/ C/ 471,EMEA/ H/ C/ 471
135
+ bg-cs,ABILIFY,ABILIFY
136
+ bg-cs,Какво представлява Abilify?,Co je Abilify?
137
+ bg-cs,"Abilify е лекарство, съдържащо активното вещество арипипразол.","Abilify je léčivý přípravek, který obsahuje účinnou látku aripiprazol."
138
+ bg-cs,"Предлага се под формата на таблетки от 5 mg, 10 mg, 15 mg и 30 mg, като диспергиращи се таблетки (таблетки, които се разтварят в устата) от 10 mg, 15 mg и 30 mg, като перорален разтвор (1 mg/ ml) и като инжекционен разтвор (7, 5 mg/ ml).","Je dostupný ve formě tablet s obsahem 5 mg, 10 mg, 15 mg a 30 mg, ve formě tablet dispergovatelných v ústech (tablet, které se rozpustí v ústech) s obsahem 10 mg, 15 mg a 30 mg, jako perorální roztok (1 mg/ ml) nebo jako injekční roztok (7, 5 mg/ ml)."
139
+ bg-cs,За какво се използва Abilify?,Na co se přípravek Abilify používá?
140
+ ```
141
+
142
+ ### Data Fields
143
+
144
+ **lang** : The pair of source and target language of type `String`.
145
+
146
+ **source_text** : The source text of type `String`.
147
+
148
+ **target_text** : The target text of type `String`.
149
+
150
+ ### Data Splits
151
+
152
+ | | bg | cs | da | de | el | en | es | et | fi | fr | hu | it | lt | lv | mt | nl | pl | pt | ro | sk | sl | sv |
153
+ |--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|--------|
154
+ | **bg** | 0 | 342378 | 349675 | 348061 | 355696 | 333066 | 349936 | 336142 | 341732 | 358045 | 352763 | 351669 | 348679 | 342721 | 351097 | 353942 | 355005 | 347925 | 351099 | 345572 | 346954 | 342927 |
155
+ | **cs** | 342378 | 0 | 354824 | 353397 | 364609 | 335716 | 356506 | 340309 | 349040 | 363614 | 358353 | 357578 | 353232 | 347807 | 334353 | 355192 | 358357 | 351244 | 330447 | 346835 | 348411 | 346894 |
156
+ | **da** | 349675 | 354824 | 0 | 387202 | 397654 | 360186 | 387329 | 347391 | 379830 | 396294 | 367091 | 388495 | 360572 | 353801 | 342263 | 388250 | 368779 | 382576 | 340508 | 356890 | 357694 | 373510 |
157
+ | **de** | 348061 | 353397 | 387202 | 0 | 390281 | 364005 | 386335 | 346166 | 378626 | 393468 | 366828 | 381396 | 360907 | 353151 | 340294 | 377770 | 367080 | 381365 | 337562 | 355805 | 358700 | 376925 |
158
+ | **el** | 355696 | 364609 | 397654 | 390281 | 0 | 372824 | 393051 | 354874 | 384889 | 403248 | 373706 | 391389 | 368576 | 360047 | 348221 | 396284 | 372486 | 387170 | 342655 | 364959 | 363778 | 384569 |
159
+ | **en** | 333066 | 335716 | 360186 | 364005 | 372824 | 0 | 366769 | 333667 | 357177 | 373152 | 349176 | 361089 | 339899 | 336306 | 324695 | 360418 | 348450 | 361393 | 321233 | 338649 | 338195 | 352587 |
160
+ | **es** | 349936 | 356506 | 387329 | 386335 | 393051 | 366769 | 0 | 348454 | 378158 | 394253 | 368203 | 378076 | 360645 | 354126 | 340297 | 381188 | 367091 | 376443 | 337302 | 358745 | 357961 | 379462 |
161
+ | **et** | 336142 | 340309 | 347391 | 346166 | 354874 | 333667 | 348454 | 0 | 341694 | 358012 | 352099 | 351747 | 345417 | 339042 | 337302 | 350911 | 354329 | 345856 | 325992 | 343950 | 342787 | 340761 |
162
+ | **fi** | 341732 | 349040 | 379830 | 378626 | 384889 | 357177 | 378158 | 341694 | 0 | 387478 | 358869 | 379862 | 352968 | 346820 | 334275 | 379729 | 358760 | 374737 | 331135 | 348559 | 348680 | 368528 |
163
+ | **fr** | 358045 | 363614 | 396294 | 393468 | 403248 | 373152 | 394253 | 358012 | 387478 | 0 | 373625 | 385869 | 368817 | 361137 | 347699 | 388607 | 372387 | 388658 | 344139 | 363249 | 366474 | 383274 |
164
+ | **hu** | 352763 | 358353 | 367091 | 366828 | 373706 | 349176 | 368203 | 352099 | 358869 | 373625 | 0 | 367937 | 361015 | 354872 | 343831 | 368387 | 369040 | 361652 | 340410 | 357466 | 361157 | 356426 |
165
+ | **it** | 351669 | 357578 | 388495 | 381396 | 391389 | 361089 | 378076 | 351747 | 379862 | 385869 | 367937 | 0 | 360783 | 356001 | 341552 | 384018 | 365159 | 378841 | 337354 | 357562 | 358969 | 377635 |
166
+ | **lt** | 348679 | 353232 | 360572 | 360907 | 368576 | 339899 | 360645 | 345417 | 352968 | 368817 | 361015 | 360783 | 0 | 350576 | 337339 | 362096 | 361497 | 357070 | 335581 | 351639 | 350916 | 349636 |
167
+ | **lv** | 342721 | 347807 | 353801 | 353151 | 360047 | 336306 | 354126 | 339042 | 346820 | 361137 | 354872 | 356001 | 350576 | 0 | 336157 | 355791 | 358607 | 349590 | 329581 | 348689 | 346862 | 345016 |
168
+ | **mt** | 351097 | 334353 | 342263 | 340294 | 348221 | 324695 | 340297 | 337302 | 334275 | 347699 | 343831 | 341552 | 337339 | 336157 | 0 | 341111 | 344764 | 335553 | 338137 | 335930 | 334491 | 335353 |
169
+ | **nl** | 353942 | 355192 | 388250 | 377770 | 396284 | 360418 | 381188 | 350911 | 379729 | 388607 | 368387 | 384018 | 362096 | 355791 | 341111 | 0 | 369694 | 383913 | 339047 | 359126 | 360054 | 379771 |
170
+ | **pl** | 355005 | 358357 | 368779 | 367080 | 372486 | 348450 | 367091 | 354329 | 358760 | 372387 | 369040 | 365159 | 361497 | 358607 | 344764 | 369694 | 0 | 357426 | 335243 | 352527 | 355534 | 353214 |
171
+ | **pt** | 347925 | 351244 | 382576 | 381365 | 387170 | 361393 | 376443 | 345856 | 374737 | 388658 | 361652 | 378841 | 357070 | 349590 | 335553 | 383913 | 357426 | 0 | 333365 | 354784 | 352673 | 373392 |
172
+ | **ro** | 351099 | 330447 | 340508 | 337562 | 342655 | 321233 | 337302 | 325992 | 331135 | 344139 | 340410 | 337354 | 335581 | 329581 | 338137 | 339047 | 335243 | 333365 | 0 | 332373 | 330329 | 331268 |
173
+ | **sk** | 345572 | 346835 | 356890 | 355805 | 364959 | 338649 | 358745 | 343950 | 348559 | 363249 | 357466 | 357562 | 351639 | 348689 | 335930 | 359126 | 352527 | 354784 | 332373 | 0 | 348396 | 346855 |
174
+ | **sl** | 346954 | 348411 | 357694 | 358700 | 363778 | 338195 | 357961 | 342787 | 348680 | 366474 | 361157 | 358969 | 350916 | 346862 | 334491 | 360054 | 355534 | 352673 | 330329 | 348396 | 0 | 347727 |
175
+ | **sv** | 342927 | 346894 | 373510 | 376925 | 384569 | 352587 | 379462 | 340761 | 368528 | 383274 | 356426 | 377635 | 349636 | 345016 | 335353 | 379771 | 353214 | 373392 | 331268 | 346855 | 347727 | 0 |
176
+
177
+ ## Dataset Creation
178
+
179
+ ### Curation Rationale
180
+
181
+ For details, check the corresponding [pages](https://opus.nlpl.eu/EMEA.php).
182
+
183
+ ### Source Data
184
+
185
+ <!-- #### Initial Data Collection and Normalization
186
+
187
+ ddd -->
188
+
189
+ #### Who are the source language producers?
190
+
191
+ Every data of this corpora as been uploaded by [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se) on [Opus](https://opus.nlpl.eu/EMEA.php).
192
+
193
+ ### Personal and Sensitive Information
194
+
195
+ The corpora is free of personal or sensitive information.
196
+
197
+ ## Considerations for Using the Data
198
+
199
+ ### Other Known Limitations
200
+
201
+ The nature of the task introduce a variability in the quality of the target translations.
202
+
203
+ ## Additional Information
204
+
205
+ ### Dataset Curators
206
+
207
+ __Hugging Face EMEA-V3__: Labrak Yanis, Dufour Richard (Not affiliated with the original corpus)
208
+
209
+ __OPUS : Parallel Data, Tools and Interfaces in OPUS__: [Tiedemann, Jorg](mailto:jorg.tiedemann@lingfil.uu.se).
210
+
211
+ <!-- ### Licensing Information
212
+
213
+ ddd -->
214
+
215
+ ### Citation Information
216
+
217
+ Please cite the following paper when using this dataset.
218
+
219
+ ```latex
220
+ @inproceedings{tiedemann-2012-parallel,
221
+ title = Parallel Data, Tools and Interfaces in OPUS,
222
+ author = {
223
+ Tiedemann, Jorg
224
+ },
225
+ booktitle = "Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC'12)",
226
+ month = may,
227
+ year = 2012,
228
+ address = Istanbul, Turkey,
229
+ publisher = European Language Resources Association (ELRA),
230
+ url = http://www.lrec-conf.org/proceedings/lrec2012/pdf/463_Paper.pdf,
231
+ pages = 2214--2218,
232
+ abstract = This paper presents the current status of OPUS, a growing language resource of parallel corpora and related tools. The focus in OPUS is to provide freely available data sets in various formats together with basic annotation to be useful for applications in computational linguistics, translation studies and cross-linguistic corpus studies. In this paper, we report about new data sets and their features, additional annotation tools and models provided from the website and essential interfaces and on-line services included in the project.,
233
+ }
234
+ ```