holylovenia commited on
Commit
f2b5726
·
verified ·
1 Parent(s): 42245e8

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: gpl-3.0
4
+ language:
5
+ - mya
6
+ - rki
7
+ pretty_name: Myanmar Rakhine Parallel
8
+ task_categories:
9
+ - machine-translation
10
+ tags:
11
+ - machine-translation
12
+ ---
13
+
14
+ The data contains 18,373 Myanmar sentences of the ASEAN-MT Parallel Corpus,
15
+ which is a parallel corpus in the travel domain. It contains six main
16
+ categories: people (greeting, introduction, and communication), survival
17
+ (transportation, accommodation, and finance), food (food, beverages, and
18
+ restaurants), fun (recreation, traveling, shopping, and nightlife), resource
19
+ (number, time, and accuracy), special needs (emergency and health). Manual
20
+ translation into the Rakhine language was done by native Rakhine students from
21
+ two Myanmar universities, and the translated corpus was checked by the editor
22
+ of a Rakhine newspaper. Word segmentation for Rakhine was done manually, and
23
+ there are exactly 123,018 words in total.
24
+
25
+
26
+ ## Languages
27
+
28
+ mya, rki
29
+
30
+ ## Supported Tasks
31
+
32
+ Machine Translation
33
+
34
+ ## Dataset Usage
35
+ ### Using `datasets` library
36
+ ```
37
+ from datasets import load_dataset
38
+ dset = datasets.load_dataset("SEACrowd/myanmar_rakhine_parallel", trust_remote_code=True)
39
+ ```
40
+ ### Using `seacrowd` library
41
+ ```import seacrowd as sc
42
+ # Load the dataset using the default config
43
+ dset = sc.load_dataset("myanmar_rakhine_parallel", schema="seacrowd")
44
+ # Check all available subsets (config names) of the dataset
45
+ print(sc.available_config_names("myanmar_rakhine_parallel"))
46
+ # Load the dataset using a specific config
47
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
48
+ ```
49
+
50
+ 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).
51
+
52
+
53
+ ## Dataset Homepage
54
+
55
+ [https://github.com/ye-kyaw-thu/myPar/tree/master/my-rk](https://github.com/ye-kyaw-thu/myPar/tree/master/my-rk)
56
+
57
+ ## Dataset Version
58
+
59
+ Source: 0.1.0. SEACrowd: 2024.06.20.
60
+
61
+ ## Dataset License
62
+
63
+ GNU General Public License v3.0 (gpl-3.0)
64
+
65
+ ## Citation
66
+
67
+ If you are using the **Myanmar Rakhine Parallel** dataloader in your work, please cite the following:
68
+ ```
69
+ @inproceedings{myint-oo-etal-2019-neural,
70
+ title = "Neural Machine Translation between {M}yanmar ({B}urmese) and {R}akhine ({A}rakanese)",
71
+ author = "Myint Oo, Thazin and
72
+ Kyaw Thu, Ye and
73
+ Mar Soe, Khin",
74
+ editor = {Zampieri, Marcos and
75
+ Nakov, Preslav and
76
+ Malmasi, Shervin and
77
+ Ljube{ {s}}i{'c}, Nikola and
78
+ Tiedemann, J{"o}rg and
79
+ Ali, Ahmed},
80
+ booktitle = "Proceedings of the Sixth Workshop on {NLP} for Similar Languages, Varieties and Dialects",
81
+ month = jun,
82
+ year = "2019",
83
+ address = "Ann Arbor, Michigan",
84
+ publisher = "Association for Computational Linguistics",
85
+ url = "https://aclanthology.org/W19-1408",
86
+ doi = "10.18653/v1/W19-1408",
87
+ pages = "80--88",
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
+ ```