Datasets:

Languages:
Burmese
ArXiv:
License:
holylovenia commited on
Commit
cf0cfe6
1 Parent(s): d4109b8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +84 -0
README.md ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-nc-sa-4.0
4
+ language:
5
+ - mya
6
+ pretty_name: Burmese Romanize
7
+ task_categories:
8
+ - transliteration
9
+ tags:
10
+ - transliteration
11
+ ---
12
+
13
+ This dataset consists of 2,335 Burmese names from real university students and faculty,
14
+ public figures, and minorities from Myanmar. Each entry includes the original name in
15
+ Burmese script, its corresponding Romanization, and the aligned Burmese and Latin
16
+ graphemes.
17
+
18
+
19
+ ## Languages
20
+
21
+ mya
22
+
23
+ ## Supported Tasks
24
+
25
+ Transliteration
26
+
27
+ ## Dataset Usage
28
+ ### Using `datasets` library
29
+ ```
30
+ from datasets import load_dataset
31
+ dset = datasets.load_dataset("SEACrowd/burmese_romanize", trust_remote_code=True)
32
+ ```
33
+ ### Using `seacrowd` library
34
+ ```import seacrowd as sc
35
+ # Load the dataset using the default config
36
+ dset = sc.load_dataset("burmese_romanize", schema="seacrowd")
37
+ # Check all available subsets (config names) of the dataset
38
+ print(sc.available_config_names("burmese_romanize"))
39
+ # Load the dataset using a specific config
40
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
41
+ ```
42
+
43
+ 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).
44
+
45
+
46
+ ## Dataset Homepage
47
+
48
+ [http://www.nlpresearch-ucsy.edu.mm/NLP_UCSY/name-db.html](http://www.nlpresearch-ucsy.edu.mm/NLP_UCSY/name-db.html)
49
+
50
+ ## Dataset Version
51
+
52
+ Source: 1.0.0. SEACrowd: 2024.06.20.
53
+
54
+ ## Dataset License
55
+
56
+ Creative Commons Attribution Non Commercial Share Alike 4.0 (cc-by-nc-sa-4.0)
57
+
58
+ ## Citation
59
+
60
+ If you are using the **Burmese Romanize** dataloader in your work, please cite the following:
61
+ ```
62
+ @inproceedings{chenchen2017statistical,
63
+ author = {Ding Chenchen and
64
+ Chea Vichet and
65
+ Pa Win Pa and
66
+ Utiyama Masao and
67
+ Sumita Eiichiro},
68
+ title = {Statistical Romanization for Abugida Scripts: Data and Experiment on Khmer and Burmese},
69
+ booktitle = {Proceedings of the 23rd Annual Conference of the Association for Natural Language Processing,
70
+ {NLP2017}, Tsukuba, Japan, 13-17 March 2017},
71
+ year = {2017},
72
+ url = {https://www.anlp.jp/proceedings/annual_meeting/2017/pdf_dir/P5-7.pdf},
73
+ }
74
+
75
+
76
+ @article{lovenia2024seacrowd,
77
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
78
+ 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},
79
+ year={2024},
80
+ eprint={2406.10118},
81
+ journal={arXiv preprint arXiv: 2406.10118}
82
+ }
83
+
84
+ ```