Datasets:
Update files from the datasets library (from 1.3.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.3.0
README.md
ADDED
@@ -0,0 +1,163 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
---
|
3 |
+
|
4 |
+
# Dataset Card for "wmt18"
|
5 |
+
|
6 |
+
## Table of Contents
|
7 |
+
- [Dataset Description](#dataset-description)
|
8 |
+
- [Dataset Summary](#dataset-summary)
|
9 |
+
- [Supported Tasks](#supported-tasks)
|
10 |
+
- [Languages](#languages)
|
11 |
+
- [Dataset Structure](#dataset-structure)
|
12 |
+
- [Data Instances](#data-instances)
|
13 |
+
- [Data Fields](#data-fields)
|
14 |
+
- [Data Splits Sample Size](#data-splits-sample-size)
|
15 |
+
- [Dataset Creation](#dataset-creation)
|
16 |
+
- [Curation Rationale](#curation-rationale)
|
17 |
+
- [Source Data](#source-data)
|
18 |
+
- [Annotations](#annotations)
|
19 |
+
- [Personal and Sensitive Information](#personal-and-sensitive-information)
|
20 |
+
- [Considerations for Using the Data](#considerations-for-using-the-data)
|
21 |
+
- [Social Impact of Dataset](#social-impact-of-dataset)
|
22 |
+
- [Discussion of Biases](#discussion-of-biases)
|
23 |
+
- [Other Known Limitations](#other-known-limitations)
|
24 |
+
- [Additional Information](#additional-information)
|
25 |
+
- [Dataset Curators](#dataset-curators)
|
26 |
+
- [Licensing Information](#licensing-information)
|
27 |
+
- [Citation Information](#citation-information)
|
28 |
+
- [Contributions](#contributions)
|
29 |
+
|
30 |
+
## [Dataset Description](#dataset-description)
|
31 |
+
|
32 |
+
- **Homepage:** [http://www.statmt.org/wmt18/translation-task.html](http://www.statmt.org/wmt18/translation-task.html)
|
33 |
+
- **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
34 |
+
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
35 |
+
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
36 |
+
- **Size of downloaded dataset files:** 1935.34 MB
|
37 |
+
- **Size of the generated dataset:** 1394.65 MB
|
38 |
+
- **Total amount of disk used:** 3329.99 MB
|
39 |
+
|
40 |
+
### [Dataset Summary](#dataset-summary)
|
41 |
+
|
42 |
+
Translate dataset based on the data from statmt.org.
|
43 |
+
|
44 |
+
Versions exists for the different years using a combination of multiple data
|
45 |
+
sources. The base `wmt_translate` allows you to create your own config to choose
|
46 |
+
your own data/language pair by creating a custom `datasets.translate.wmt.WmtConfig`.
|
47 |
+
|
48 |
+
```
|
49 |
+
config = datasets.wmt.WmtConfig(
|
50 |
+
version="0.0.1",
|
51 |
+
language_pair=("fr", "de"),
|
52 |
+
subsets={
|
53 |
+
datasets.Split.TRAIN: ["commoncrawl_frde"],
|
54 |
+
datasets.Split.VALIDATION: ["euelections_dev2019"],
|
55 |
+
},
|
56 |
+
)
|
57 |
+
builder = datasets.builder("wmt_translate", config=config)
|
58 |
+
```
|
59 |
+
|
60 |
+
### [Supported Tasks](#supported-tasks)
|
61 |
+
|
62 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
63 |
+
|
64 |
+
### [Languages](#languages)
|
65 |
+
|
66 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
67 |
+
|
68 |
+
## [Dataset Structure](#dataset-structure)
|
69 |
+
|
70 |
+
We show detailed information for up to 5 configurations of the dataset.
|
71 |
+
|
72 |
+
### [Data Instances](#data-instances)
|
73 |
+
|
74 |
+
#### cs-en
|
75 |
+
|
76 |
+
- **Size of downloaded dataset files:** 1935.34 MB
|
77 |
+
- **Size of the generated dataset:** 1394.65 MB
|
78 |
+
- **Total amount of disk used:** 3329.99 MB
|
79 |
+
|
80 |
+
An example of 'validation' looks as follows.
|
81 |
+
```
|
82 |
+
|
83 |
+
```
|
84 |
+
|
85 |
+
### [Data Fields](#data-fields)
|
86 |
+
|
87 |
+
The data fields are the same among all splits.
|
88 |
+
|
89 |
+
#### cs-en
|
90 |
+
- `translation`: a multilingual `string` variable, with possible languages including `cs`, `en`.
|
91 |
+
|
92 |
+
### [Data Splits Sample Size](#data-splits-sample-size)
|
93 |
+
|
94 |
+
|name | train |validation|test|
|
95 |
+
|-----|-------:|---------:|---:|
|
96 |
+
|cs-en|11046024| 3005|2983|
|
97 |
+
|
98 |
+
## [Dataset Creation](#dataset-creation)
|
99 |
+
|
100 |
+
### [Curation Rationale](#curation-rationale)
|
101 |
+
|
102 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
103 |
+
|
104 |
+
### [Source Data](#source-data)
|
105 |
+
|
106 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
107 |
+
|
108 |
+
### [Annotations](#annotations)
|
109 |
+
|
110 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
111 |
+
|
112 |
+
### [Personal and Sensitive Information](#personal-and-sensitive-information)
|
113 |
+
|
114 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
115 |
+
|
116 |
+
## [Considerations for Using the Data](#considerations-for-using-the-data)
|
117 |
+
|
118 |
+
### [Social Impact of Dataset](#social-impact-of-dataset)
|
119 |
+
|
120 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
121 |
+
|
122 |
+
### [Discussion of Biases](#discussion-of-biases)
|
123 |
+
|
124 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
125 |
+
|
126 |
+
### [Other Known Limitations](#other-known-limitations)
|
127 |
+
|
128 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
129 |
+
|
130 |
+
## [Additional Information](#additional-information)
|
131 |
+
|
132 |
+
### [Dataset Curators](#dataset-curators)
|
133 |
+
|
134 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
135 |
+
|
136 |
+
### [Licensing Information](#licensing-information)
|
137 |
+
|
138 |
+
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
|
139 |
+
|
140 |
+
### [Citation Information](#citation-information)
|
141 |
+
|
142 |
+
```
|
143 |
+
@InProceedings{bojar-EtAl:2018:WMT1,
|
144 |
+
author = {Bojar, Ond{r}ej and Federmann, Christian and Fishel, Mark
|
145 |
+
and Graham, Yvette and Haddow, Barry and Huck, Matthias and
|
146 |
+
Koehn, Philipp and Monz, Christof},
|
147 |
+
title = {Findings of the 2018 Conference on Machine Translation (WMT18)},
|
148 |
+
booktitle = {Proceedings of the Third Conference on Machine Translation,
|
149 |
+
Volume 2: Shared Task Papers},
|
150 |
+
month = {October},
|
151 |
+
year = {2018},
|
152 |
+
address = {Belgium, Brussels},
|
153 |
+
publisher = {Association for Computational Linguistics},
|
154 |
+
pages = {272--307},
|
155 |
+
url = {http://www.aclweb.org/anthology/W18-6401}
|
156 |
+
}
|
157 |
+
|
158 |
+
```
|
159 |
+
|
160 |
+
|
161 |
+
### Contributions
|
162 |
+
|
163 |
+
Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.
|