system HF staff commited on
Commit
da98209
1 Parent(s): 134d4df

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +161 -0
README.md ADDED
@@ -0,0 +1,161 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "wmt16"
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/wmt16/translation-task.html](http://www.statmt.org/wmt16/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:** 1611.50 MB
37
+ - **Size of the generated dataset:** 283.51 MB
38
+ - **Total amount of disk used:** 1895.01 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:** 1611.50 MB
77
+ - **Size of the generated dataset:** 283.51 MB
78
+ - **Total amount of disk used:** 1895.01 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|997240| 2656|2999|
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
+
144
+ @InProceedings{bojar-EtAl:2016:WMT1,
145
+ author = {Bojar, Ond {r}ej and Chatterjee, Rajen and Federmann, Christian and Graham, Yvette and Haddow, Barry and Huck, Matthias and Jimeno Yepes, Antonio and Koehn, Philipp and Logacheva, Varvara and Monz, Christof and Negri, Matteo and Neveol, Aurelie and Neves, Mariana and Popel, Martin and Post, Matt and Rubino, Raphael and Scarton, Carolina and Specia, Lucia and Turchi, Marco and Verspoor, Karin and Zampieri, Marcos},
146
+ title = {Findings of the 2016 Conference on Machine Translation},
147
+ booktitle = {Proceedings of the First Conference on Machine Translation},
148
+ month = {August},
149
+ year = {2016},
150
+ address = {Berlin, Germany},
151
+ publisher = {Association for Computational Linguistics},
152
+ pages = {131--198},
153
+ url = {http://www.aclweb.org/anthology/W/W16/W16-2301}
154
+ }
155
+
156
+ ```
157
+
158
+
159
+ ### Contributions
160
+
161
+ Thanks to [@thomwolf](https://github.com/thomwolf), [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.