system HF staff commited on
Commit
78402df
1 Parent(s): fff8d5d

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 "wmt14"
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/wmt14/translation-task.html](http://www.statmt.org/wmt14/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:** 1616.49 MB
37
+ - **Size of the generated dataset:** 269.84 MB
38
+ - **Total amount of disk used:** 1886.33 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:** 1616.49 MB
77
+ - **Size of the generated dataset:** 269.84 MB
78
+ - **Total amount of disk used:** 1886.33 MB
79
+
80
+ An example of 'train' 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|953621| 3000|3003|
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:2014:W14-33,
145
+ author = {Bojar, Ondrej and Buck, Christian and Federmann, Christian and Haddow, Barry and Koehn, Philipp and Leveling, Johannes and Monz, Christof and Pecina, Pavel and Post, Matt and Saint-Amand, Herve and Soricut, Radu and Specia, Lucia and Tamchyna, Ale {s}},
146
+ title = {Findings of the 2014 Workshop on Statistical Machine Translation},
147
+ booktitle = {Proceedings of the Ninth Workshop on Statistical Machine Translation},
148
+ month = {June},
149
+ year = {2014},
150
+ address = {Baltimore, Maryland, USA},
151
+ publisher = {Association for Computational Linguistics},
152
+ pages = {12--58},
153
+ url = {http://www.aclweb.org/anthology/W/W14/W14-3302}
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.