jasonrichdarmawan commited on
Commit
2394ec8
·
verified ·
1 Parent(s): 6116c60

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -30
README.md CHANGED
@@ -1,30 +1,45 @@
1
- ---
2
- license: odc-by
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- dataset_info:
9
- features:
10
- - name: text_1
11
- dtype: string
12
- - name: lang_1
13
- dtype: string
14
- - name: embedding_1
15
- list: float32
16
- length: 1024
17
- - name: text_2
18
- dtype: string
19
- - name: lang_2
20
- dtype: string
21
- - name: embedding_2
22
- list: float32
23
- length: 1024
24
- splits:
25
- - name: train
26
- num_bytes: 91746488145.0
27
- num_examples: 10729806
28
- download_size: 103633594260
29
- dataset_size: 91746488145.0
30
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: train
7
+ path: data/train-*
8
+ dataset_info:
9
+ features:
10
+ - name: text_1
11
+ dtype: string
12
+ - name: lang_1
13
+ dtype: string
14
+ - name: embedding_1
15
+ list: float32
16
+ length: 1024
17
+ - name: text_2
18
+ dtype: string
19
+ - name: lang_2
20
+ dtype: string
21
+ - name: embedding_2
22
+ list: float32
23
+ length: 1024
24
+ splits:
25
+ - name: train
26
+ num_bytes: 91746488145.0
27
+ num_examples: 10729806
28
+ download_size: 103633594260
29
+ dataset_size: 91746488145.0
30
+ ---
31
+
32
+ [Original dataset](https://github.com/facebookresearch/fairseq/blob/nllb/examples/nllb/data/README.md)
33
+
34
+ [SONAR's author message](https://github.com/facebookresearch/SONAR/issues/75#issuecomment-3221061689)
35
+
36
+ What happened to the original dataset?
37
+ We preprocess the public data and NLLB-Seed, with a note:
38
+ 1. `aau` dataset, except the `orm` language because it is not supported by the SONAR model
39
+ 2. `hornmt` dataset, except the `orm` and `aar` languages because these are not supported by the SONAR model
40
+ 3. `mburisano` dataset, except `nde` and `ven` languages because these are not supported by the SONAR model
41
+ 4. `tico` dataset, except the `orm` language because it is not supported by the SONAR model
42
+ 5. `til` dataset because the total size is about ~80.6M pairs, which translates to about ~615 GB
43
+
44
+ What are the use cases?
45
+ 1. Training a model with embeddings as input. For example, training a Sparse Autoencoder. This saves computation because we do not need to load the encoder during training. Also, we do not need to cache the encoder's output on-the-fly