Datasets:

Languages:
Burmese
ArXiv:
License:
holylovenia commited on
Commit
0664a9f
·
verified ·
1 Parent(s): c0ecddb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-nc-sa-4.0
4
+ language:
5
+ - mya
6
+ pretty_name: Mypos
7
+ task_categories:
8
+ - pos-tagging
9
+ tags:
10
+ - pos-tagging
11
+ ---
12
+
13
+ This version of the myPOS corpus extends the original myPOS corpus from
14
+ 11,000 to 43,196 Burmese sentences by adding data from the ASEAN MT NECTEC
15
+ corpus and two developed parallel corpora (Myanmar-Chinese and
16
+ Myanmar-Korean). The original 11,000 sentences were collected from Wikipedia
17
+ and includes various topics such as economics, history, news, politics and
18
+ philosophy. The format used in the corpus is word/POS-tag, and the pipe
19
+ delimiter "
20
+
21
+
22
+ ## Languages
23
+
24
+ mya
25
+
26
+ ## Supported Tasks
27
+
28
+ Pos Tagging
29
+
30
+ ## Dataset Usage
31
+ ### Using `datasets` library
32
+ ```
33
+ from datasets import load_dataset
34
+ dset = datasets.load_dataset("SEACrowd/mypos", trust_remote_code=True)
35
+ ```
36
+ ### Using `seacrowd` library
37
+ ```import seacrowd as sc
38
+ # Load the dataset using the default config
39
+ dset = sc.load_dataset("mypos", schema="seacrowd")
40
+ # Check all available subsets (config names) of the dataset
41
+ print(sc.available_config_names("mypos"))
42
+ # Load the dataset using a specific config
43
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
44
+ ```
45
+
46
+ 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).
47
+
48
+
49
+ ## Dataset Homepage
50
+
51
+ [https://github.com/ye-kyaw-thu/myPOS](https://github.com/ye-kyaw-thu/myPOS)
52
+
53
+ ## Dataset Version
54
+
55
+ Source: 3.0.0. SEACrowd: 2024.06.20.
56
+
57
+ ## Dataset License
58
+
59
+ Creative Commons Attribution Non Commercial Share Alike 4.0 (cc-by-nc-sa-4.0)
60
+
61
+ ## Citation
62
+
63
+ If you are using the **Mypos** dataloader in your work, please cite the following:
64
+ ```
65
+
66
+ @inproceedings{hlaing-2020-myanmar,
67
+ author={Hlaing, Zar Zar and Thu, Ye Kyaw and Wai, Myat Myo Nwe and Supnithi, Thepchai and Netisopakul, Ponrudee},
68
+ booktitle={2020 15th International Joint Symposium on Artificial Intelligence and Natural Language Processing (iSAI-NLP)},
69
+ title={Myanmar POS Resource Extension Effects on Automatic Tagging Methods},
70
+ year={2020},
71
+ pages={1-6},
72
+ doi={10.1109/iSAI-NLP51646.2020.9376835}}
73
+ @inproceedings{htike2017comparison,
74
+ title={Comparison of six POS tagging methods on 10K sentences Myanmar language (Burmese) POS tagged corpus},
75
+ author={Htike, Khin War War and Thu, Ye Kyaw and Zuping Zhang, Win Pa Pa and Sagisaka, Yoshinori and Iwahashi, Naoto},
76
+ booktitle={Proceedings of the CICLING},
77
+ year={2017}
78
+ }
79
+
80
+
81
+ @article{lovenia2024seacrowd,
82
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
83
+ 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},
84
+ year={2024},
85
+ eprint={2406.10118},
86
+ journal={arXiv preprint arXiv: 2406.10118}
87
+ }
88
+
89
+ ```