holylovenia commited on
Commit
c91f030
1 Parent(s): ee3ca38

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-4.0
4
+ language:
5
+ - ind
6
+ - mad
7
+ pretty_name: Indonesian Madurese Bible Translation
8
+ task_categories:
9
+ - machine-translation
10
+ tags:
11
+ - machine-translation
12
+ ---
13
+
14
+ The Madurese Parallel Corpus Dataset is created by scraping content from the online Bible, resulting in 30,013 Indonesian-Madurese sentences.
15
+ This corpus is distinct from a previous Madurese dataset, which was gathered from physical documents such as the Kamus Lengkap Bahasa Madura-Indonesia.
16
+ The proposed dataset provides bilingual sentences, allowing for comparisons between Indonesian and Madurese. It aims to supplement existing Madurese
17
+ corpora, enabling enhanced research and development focused on regional languages in Indonesia. Unlike the prior dataset that included information
18
+ like lemmas, pronunciation, linguistic descriptions, part of speech, loanwords, dialects, and various structures, this new corpus primarily focuses
19
+ on bilingual sentence pairs, potentially broadening the scope for linguistic studies and language technology advancements in the Madurese language.
20
+
21
+
22
+ ## Languages
23
+
24
+ ind, mad
25
+
26
+ ## Supported Tasks
27
+
28
+ Machine Translation
29
+
30
+ ## Dataset Usage
31
+ ### Using `datasets` library
32
+ ```
33
+ from datasets import load_dataset
34
+ dset = datasets.load_dataset("SEACrowd/indonesian_madurese_bible_translation", 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("indonesian_madurese_bible_translation", schema="seacrowd")
40
+ # Check all available subsets (config names) of the dataset
41
+ print(sc.available_config_names("indonesian_madurese_bible_translation"))
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://data.mendeley.com/datasets/cgtg4bhrtf/3](https://data.mendeley.com/datasets/cgtg4bhrtf/3)
52
+
53
+ ## Dataset Version
54
+
55
+ Source: 1.0.0. SEACrowd: 2024.06.20.
56
+
57
+ ## Dataset License
58
+
59
+ Creative Commons Attribution 4.0 (cc-by-4.0)
60
+
61
+ ## Citation
62
+
63
+ If you are using the **Indonesian Madurese Bible Translation** dataloader in your work, please cite the following:
64
+ ```
65
+ @article{,
66
+ author = {Sulistyo, Danang Arbian and Wibawa, Aji Prasetya and Prasetya, Didik Dwi and Nafalski, Andrew},
67
+ title = {Autogenerated Indonesian-Madurese Parallel Corpus Dataset Using Neural Machine Translation},
68
+ journal = {Available at SSRN 4644430},
69
+ volume = {},
70
+ year = {2023},
71
+ url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4644430},
72
+ doi = {},
73
+ biburl = {},
74
+ bibsource = {}
75
+ }
76
+
77
+
78
+ @article{lovenia2024seacrowd,
79
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
80
+ 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},
81
+ year={2024},
82
+ eprint={2406.10118},
83
+ journal={arXiv preprint arXiv: 2406.10118}
84
+ }
85
+
86
+ ```