Hoshikuzu commited on
Commit
2f6d39a
1 Parent(s): c33a8e4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - translation
4
+ language:
5
+ - en
6
+ - ja
7
+ ---
8
+
9
+ # Dataset Card for JParaCrawl
10
+ ### Dataset Summary
11
+
12
+ Cleaned JParaCrawl data.
13
+ For more information, see website below!
14
+ [https://www.kecl.ntt.co.jp/icl/lirg/jparacrawl/]
15
+
16
+ JParaCrawl is the largest publicly available English-Japanese parallel corpus created by NTT.
17
+ It was created by largely crawling the web and automatically aligning parallel sentences.
18
+
19
+ ### How to use
20
+
21
+ ```
22
+ from datasets import load_dataset
23
+ dataset = load_dataset("Hoshikuzu/JParaCrawl")
24
+ ```
25
+ If data loading times are too long and boring, use Streaming.
26
+
27
+ ```
28
+ from datasets import load_dataset
29
+ dataset = load_dataset("Hoshikuzu/JParaCrawl", streaming=True)
30
+ ```
31
+
32
+ ### Data Instances
33
+ For example:
34
+
35
+ ```json
36
+ {
37
+ 'id': 0,
38
+ 'score': 1.2499920129776,
39
+ 'translation': {
40
+ 'en': 'Such is God’s forgiveness.',
41
+ 'ja': 'それは神の赦しの故だ。'
42
+ }
43
+ }
44
+ ```
45
+ ### Licensing Information ###
46
+ JESC is distributed under its own licence.
47
+ Check the [https://www.kecl.ntt.co.jp/icl/lirg/jparacrawl/].
48
+
49
+ ### Data Splits
50
+ Only a `train` split is provided.
51
+
52
+ ### Citation Information ###
53
+ ```json
54
+ @inproceedings{morishita-etal-2020-jparacrawl,
55
+ title = "{JP}ara{C}rawl: A Large Scale Web-Based {E}nglish-{J}apanese Parallel Corpus",
56
+ author = "Morishita, Makoto and
57
+ Suzuki, Jun and
58
+ Nagata, Masaaki",
59
+ booktitle = "Proceedings of The 12th Language Resources and Evaluation Conference",
60
+ month = may,
61
+ year = "2020",
62
+ address = "Marseille, France",
63
+ publisher = "European Language Resources Association",
64
+ url = "https://www.aclweb.org/anthology/2020.lrec-1.443",
65
+ pages = "3603--3609",
66
+ ISBN = "979-10-95546-34-4",
67
+ }
68
+ ```