Datasets:

ArXiv:
License:
holylovenia commited on
Commit
1447474
verified
1 Parent(s): 368b6bb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +99 -0
README.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-sa-4.0
4
+ language:
5
+ - mya
6
+ - fil
7
+ - ind
8
+ - khm
9
+ - lao
10
+ - zlm
11
+ - tha
12
+ - vie
13
+ - hmv
14
+ - eng
15
+ pretty_name: Ntrex 128
16
+ task_categories:
17
+ - machine-translation
18
+ tags:
19
+ - machine-translation
20
+ ---
21
+
22
+ NTREX-128, a data set for machine translation (MT) evaluation, includes 123 documents (1,997 sentences, 42k words) translated from English into 128 target languages. 9 languages are natively spoken in Southeast Asia, i.e., Burmese, Filipino, Hmong, Indonesian, Khmer, Lao, Malay, Thai, and Vietnamese.
23
+
24
+
25
+ ## Languages
26
+
27
+ mya, fil, ind, khm, lao, zlm, tha, vie, hmv, eng
28
+
29
+ ## Supported Tasks
30
+
31
+ Machine Translation
32
+
33
+ ## Dataset Usage
34
+ ### Using `datasets` library
35
+ ```
36
+ from datasets import load_dataset
37
+ dset = datasets.load_dataset("SEACrowd/ntrex_128", trust_remote_code=True)
38
+ ```
39
+ ### Using `seacrowd` library
40
+ ```import seacrowd as sc
41
+ # Load the dataset using the default config
42
+ dset = sc.load_dataset("ntrex_128", schema="seacrowd")
43
+ # Check all available subsets (config names) of the dataset
44
+ print(sc.available_config_names("ntrex_128"))
45
+ # Load the dataset using a specific config
46
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
47
+ ```
48
+
49
+ 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).
50
+
51
+
52
+ ## Dataset Homepage
53
+
54
+ [https://github.com/MicrosoftTranslator/NTREX](https://github.com/MicrosoftTranslator/NTREX)
55
+
56
+ ## Dataset Version
57
+
58
+ Source: 11.24.2022. SEACrowd: 2024.06.20.
59
+
60
+ ## Dataset License
61
+
62
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
63
+
64
+ ## Citation
65
+
66
+ If you are using the **Ntrex 128** dataloader in your work, please cite the following:
67
+ ```
68
+ @inproceedings{federmann-etal-2022-ntrex,
69
+ title = "{NTREX}-128 {--} News Test References for {MT} Evaluation of 128 Languages",
70
+ author = "Federmann, Christian and
71
+ Kocmi, Tom and
72
+ Xin, Ying",
73
+ editor = "Ahuja, Kabir and
74
+ Anastasopoulos, Antonios and
75
+ Patra, Barun and
76
+ Neubig, Graham and
77
+ Choudhury, Monojit and
78
+ Dandapat, Sandipan and
79
+ Sitaram, Sunayana and
80
+ Chaudhary, Vishrav",
81
+ booktitle = "Proceedings of the First Workshop on Scaling Up Multilingual Evaluation",
82
+ month = nov,
83
+ year = "2022",
84
+ address = "Online",
85
+ publisher = "Association for Computational Linguistics",
86
+ url = "https://aclanthology.org/2022.sumeval-1.4",
87
+ pages = "21--24",
88
+ }
89
+
90
+
91
+ @article{lovenia2024seacrowd,
92
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
93
+ 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},
94
+ year={2024},
95
+ eprint={2406.10118},
96
+ journal={arXiv preprint arXiv: 2406.10118}
97
+ }
98
+
99
+ ```