Datasets:

Languages:
English
Multilinguality:
translation
Size Categories:
10K<n<100K
Source Datasets:
original
Tags:
License:
cdleong commited on
Commit
d30b47c
1 Parent(s): 8ea460c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Summary:
2
+ Pig-latin machine and English parallel machine translation corpus.
3
+
4
+
5
+ Based on
6
+
7
+ The Project Gutenberg EBook of "De Bello Gallico" and Other Commentaries
8
+
9
+ https://www.gutenberg.org/ebooks/10657
10
+
11
+
12
+ Converted to pig-latin with https://github.com/bpabel/piglatin
13
+
14
+ # Dataset Structure
15
+
16
+ ```
17
+ DatasetDict({
18
+ train: Dataset({
19
+ features: ['translation'],
20
+ num_rows: 14778
21
+ })
22
+ validation: Dataset({
23
+ features: ['translation'],
24
+ num_rows: 1000
25
+ })
26
+ })
27
+ ```
28
+
29
+ ## Data Instances
30
+ ```
31
+ {
32
+ 'translation':
33
+ {
34
+ 'eng': 'thrown into disorder they returned with more precipitation than is usual',
35
+ 'engyay': 'own-thray into-ay isorder-day ey-thay eturned-ray ith-way ore-may ecipitation-pray an-thay is-ay usual-ay'
36
+ }
37
+ }
38
+ ```