Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -22,4 +22,75 @@ configs:
|
|
22 |
data_files:
|
23 |
- split: train
|
24 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
data_files:
|
23 |
- split: train
|
24 |
path: data/train-*
|
25 |
+
license: unknown
|
26 |
+
task_categories:
|
27 |
+
- translation
|
28 |
+
- text2text-generation
|
29 |
+
language:
|
30 |
+
- en
|
31 |
+
- ja
|
32 |
---
|
33 |
+
|
34 |
+
|
35 |
+
# Dataset Card for CCMatrix-en-ja
|
36 |
+
|
37 |
+
### Dataset Summary
|
38 |
+
|
39 |
+
This corpus is extracted from **[yhavinga/ccmatrix](yhavinga/ccmatrix)**, with Japanese and English pairs.
|
40 |
+
|
41 |
+
### How to use
|
42 |
+
|
43 |
+
It is used in much the same way as **[yhavinga/ccmatrix](yhavinga/ccmatrix)**. The only difference is that you do not have to specify the language.
|
44 |
+
|
45 |
+
```
|
46 |
+
from datasets import load_dataset
|
47 |
+
dataset = load_dataset("yhavinga/ccmatrix")
|
48 |
+
```
|
49 |
+
If data loading times are too long and boring, use Streaming.
|
50 |
+
|
51 |
+
```
|
52 |
+
from datasets import load_dataset
|
53 |
+
dataset = load_dataset("yhavinga/ccmatrix", streaming=True)
|
54 |
+
```
|
55 |
+
|
56 |
+
## Dataset Structure
|
57 |
+
|
58 |
+
### Data Instances
|
59 |
+
For example:
|
60 |
+
|
61 |
+
```json
|
62 |
+
{
|
63 |
+
'id': 0,
|
64 |
+
'score': 1.2499920129776,
|
65 |
+
'translation': {
|
66 |
+
'en': 'Such is God’s forgiveness.',
|
67 |
+
'ja': 'それは神の赦しの故だ。'
|
68 |
+
}
|
69 |
+
}
|
70 |
+
```
|
71 |
+
|
72 |
+
### Data Fields
|
73 |
+
Each example contains an integer id starting with 0, a score, and a translation dictionary with the language 1 and
|
74 |
+
language 2 texts.
|
75 |
+
|
76 |
+
### Data Splits
|
77 |
+
Only a `train` split is provided.
|
78 |
+
|
79 |
+
### Citation Information
|
80 |
+
|
81 |
+
Follow the instructions described in the **[yhavinga/ccmatrix](yhavinga/ccmatrix)** readme.
|
82 |
+
The following is taken from **[yhavinga/ccmatrix](yhavinga/ccmatrix)**:
|
83 |
+
|
84 |
+
IMPORTANT: Please cite reference [2][3] if you use this data.
|
85 |
+
|
86 |
+
1. **[CCNet: Extracting High Quality Monolingual Datasets from Web Crawl Data](https://arxiv.org/abs/1911.00359)**
|
87 |
+
by *Guillaume Wenzek, Marie-Anne Lachaux, Alexis Conneau, Vishrav Chaudhary, Francisco Guzmán, Armand Jouli
|
88 |
+
and Edouard Grave*.
|
89 |
+
2. **[CCMatrix: Mining Billions of High-Quality Parallel Sentences on the WEB](https://arxiv.org/abs/1911.04944)** by *Holger Schwenk, Guillaume Wenzek, Sergey Edunov, Edouard Grave and Armand Joulin*.
|
90 |
+
3. **[Beyond English-Centric Multilingual Machine Translation](https://arxiv.org/abs/2010.11125)** by *Angela Fan, Shruti Bhosale, Holger Schwenk, Zhiyi Ma, Ahmed El-Kishky, Siddharth Goyal, Mandeep Baines,
|
91 |
+
Onur Celebi, Guillaume Wenzek, Vishrav Chaudhary, Naman Goyal, Tom Birch, Vitaliy Liptchinsky,
|
92 |
+
Sergey Edunov, Edouard Grave, Michael Auli, and Armand Joulin.*
|
93 |
+
|
94 |
+
This HuggingFace CCMatrix dataset is a wrapper around the service and files prepared and hosted by OPUS:
|
95 |
+
|
96 |
+
* **[Parallel Data, Tools and Interfaces in OPUS](https://www.aclweb.org/anthology/L12-1246/)** by *Jörg Tiedemann*.
|