Datasets:

ArXiv:
License:
holylovenia commited on
Commit
6e43292
1 Parent(s): 954e34c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +88 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: apache-2.0
4
+ language:
5
+ - ind
6
+ - vie
7
+ - tgl
8
+ - jav
9
+ - tha
10
+ - eng
11
+ pretty_name: Tatoeba
12
+ task_categories:
13
+ - machine-translation
14
+ tags:
15
+ - machine-translation
16
+ ---
17
+
18
+ This dataset is a subset of the Tatoeba corpus containing language pairs for Indonesian, Vietnamese, Tagalog, Javanese, and Thai.
19
+ The original dataset description can be found below:
20
+
21
+ This data is extracted from the Tatoeba corpus, dated Saturday 2018/11/17.
22
+ For each languages, we have selected 1000 English sentences and their translations, if available. Please check
23
+ this paper for a description of the languages, their families and scripts as well as baseline results.
24
+ Please note that the English sentences are not identical for all language pairs. This means that the results are
25
+ not directly comparable across languages. In particular, the sentences tend to have less variety for several
26
+ low-resource languages, e.g. "Tom needed water", "Tom needs water", "Tom is getting water", ...
27
+
28
+
29
+ ## Languages
30
+
31
+ ind, vie, tgl, jav, tha, eng
32
+
33
+ ## Supported Tasks
34
+
35
+ Machine Translation
36
+
37
+ ## Dataset Usage
38
+ ### Using `datasets` library
39
+ ```
40
+ from datasets import load_dataset
41
+ dset = datasets.load_dataset("SEACrowd/tatoeba", trust_remote_code=True)
42
+ ```
43
+ ### Using `seacrowd` library
44
+ ```import seacrowd as sc
45
+ # Load the dataset using the default config
46
+ dset = sc.load_dataset("tatoeba", schema="seacrowd")
47
+ # Check all available subsets (config names) of the dataset
48
+ print(sc.available_config_names("tatoeba"))
49
+ # Load the dataset using a specific config
50
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
51
+ ```
52
+
53
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
54
+
55
+
56
+ ## Dataset Homepage
57
+
58
+ [https://github.com/facebookresearch/LASER/blob/main/data/tatoeba/v1/README.md](https://github.com/facebookresearch/LASER/blob/main/data/tatoeba/v1/README.md)
59
+
60
+ ## Dataset Version
61
+
62
+ Source: 1.0.0. SEACrowd: 2024.06.20.
63
+
64
+ ## Dataset License
65
+
66
+ Apache license 2.0 (apache-2.0)
67
+
68
+ ## Citation
69
+
70
+ If you are using the **Tatoeba** dataloader in your work, please cite the following:
71
+ ```
72
+ @article{tatoeba,
73
+ title = {Massively Multilingual Sentence Embeddings for Zero-Shot Cross-Lingual Transfer and Beyond},
74
+ author = {Mikel, Artetxe and Holger, Schwenk,},
75
+ journal = {arXiv:1812.10464v2},
76
+ year = {2018}
77
+ }
78
+
79
+
80
+ @article{lovenia2024seacrowd,
81
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
82
+ author={Holy Lovenia and Rahmad Mahendra and Salsabil Maulana Akbar and Lester James V. Miranda and Jennifer Santoso and Elyanah Aco and Akhdan Fadhilah and Jonibek Mansurov and Joseph Marvin Imperial and Onno P. Kampman and Joel Ruben Antony Moniz and Muhammad Ravi Shulthan Habibi and Frederikus Hudi and Railey Montalan and Ryan Ignatius and Joanito Agili Lopo and William Nixon and Börje F. Karlsson and James Jaya and Ryandito Diandaru and Yuze Gao and Patrick Amadeus and Bin Wang and Jan Christian Blaise Cruz and Chenxi Whitehouse and Ivan Halim Parmonangan and Maria Khelli and Wenyu Zhang and Lucky Susanto and Reynard Adha Ryanda and Sonny Lazuardi Hermawan and Dan John Velasco and Muhammad Dehan Al Kautsar and Willy Fitra Hendria and Yasmin Moslem and Noah Flynn and Muhammad Farid Adilazuarda and Haochen Li and Johanes Lee and R. Damanhuri and Shuo Sun and Muhammad Reza Qorib and Amirbek Djanibekov and Wei Qi Leong and Quyet V. Do and Niklas Muennighoff and Tanrada Pansuwan and Ilham Firdausi Putra and Yan Xu and Ngee Chia Tai and Ayu Purwarianti and Sebastian Ruder and William Tjhi and Peerat Limkonchotiwat and Alham Fikri Aji and Sedrick Keh and Genta Indra Winata and Ruochen Zhang and Fajri Koto and Zheng-Xin Yong and Samuel Cahyawijaya},
83
+ year={2024},
84
+ eprint={2406.10118},
85
+ journal={arXiv preprint arXiv: 2406.10118}
86
+ }
87
+
88
+ ```