holylovenia
commited on
Commit
•
489403a
1
Parent(s):
49d540e
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,21 +1,60 @@
|
|
|
|
1 |
---
|
2 |
-
|
3 |
-
- machine-translation
|
4 |
-
language:
|
5 |
- ind
|
6 |
- sun
|
|
|
|
|
|
|
|
|
|
|
7 |
---
|
8 |
|
9 |
-
# parallel_su_id
|
10 |
-
|
11 |
This data contains 3616 lines of Sundanese sentences taken from the online Sundanese language magazine Mangle, West Java Dakwah Council, and Balebat, and translated into Indonesian by several students of the Sundanese language study program UPI Bandung.
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
## Dataset Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
## Citation
|
18 |
|
|
|
19 |
```
|
20 |
@INPROCEEDINGS{7437678,
|
21 |
author={Suryani, Arie Ardiyanti and Widyantoro, Dwi Hendratmo and Purwarianti, Ayu and Sudaryat, Yayat},
|
@@ -26,16 +65,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
|
|
26 |
number={},
|
27 |
pages={1-6},
|
28 |
doi={10.1109/ICITSI.2015.7437678}}
|
29 |
-
```
|
30 |
-
|
31 |
-
## License
|
32 |
-
|
33 |
-
Creative Commons CC0 - No Rights Reserved
|
34 |
-
|
35 |
-
## Homepage
|
36 |
|
37 |
-
[https://dataverse.telkomuniversity.ac.id/dataset.xhtml?persistentId=doi:10.34820/FK2/HDYWXW](https://dataverse.telkomuniversity.ac.id/dataset.xhtml?persistentId=doi:10.34820/FK2/HDYWXW)
|
38 |
|
39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
-
|
|
|
1 |
+
|
2 |
---
|
3 |
+
language:
|
|
|
|
|
4 |
- ind
|
5 |
- sun
|
6 |
+
pretty_name: Parallel Su Id
|
7 |
+
task_categories:
|
8 |
+
- machine-translation
|
9 |
+
tags:
|
10 |
+
- machine-translation
|
11 |
---
|
12 |
|
|
|
|
|
13 |
This data contains 3616 lines of Sundanese sentences taken from the online Sundanese language magazine Mangle, West Java Dakwah Council, and Balebat, and translated into Indonesian by several students of the Sundanese language study program UPI Bandung.
|
14 |
|
15 |
+
|
16 |
+
## Languages
|
17 |
+
|
18 |
+
ind, sun
|
19 |
+
|
20 |
+
## Supported Tasks
|
21 |
+
|
22 |
+
Machine Translation
|
23 |
+
|
24 |
## Dataset Usage
|
25 |
+
### Using `datasets` library
|
26 |
+
```
|
27 |
+
from datasets import load_dataset
|
28 |
+
dset = datasets.load_dataset("SEACrowd/parallel_su_id", trust_remote_code=True)
|
29 |
+
```
|
30 |
+
### Using `seacrowd` library
|
31 |
+
```import seacrowd as sc
|
32 |
+
# Load the dataset using the default config
|
33 |
+
dset = sc.load_dataset("parallel_su_id", schema="seacrowd")
|
34 |
+
# Check all available subsets (config names) of the dataset
|
35 |
+
print(sc.available_config_names("parallel_su_id"))
|
36 |
+
# Load the dataset using a specific config
|
37 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
38 |
+
```
|
39 |
+
|
40 |
+
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).
|
41 |
+
|
42 |
|
43 |
+
## Dataset Homepage
|
44 |
+
|
45 |
+
[https://dataverse.telkomuniversity.ac.id/dataset.xhtml?persistentId=doi:10.34820/FK2/HDYWXW](https://dataverse.telkomuniversity.ac.id/dataset.xhtml?persistentId=doi:10.34820/FK2/HDYWXW)
|
46 |
+
|
47 |
+
## Dataset Version
|
48 |
+
|
49 |
+
Source: 1.0.0. SEACrowd: 2024.06.20.
|
50 |
+
|
51 |
+
## Dataset License
|
52 |
+
|
53 |
+
Creative Commons CC0 - No Rights Reserved
|
54 |
|
55 |
## Citation
|
56 |
|
57 |
+
If you are using the **Parallel Su Id** dataloader in your work, please cite the following:
|
58 |
```
|
59 |
@INPROCEEDINGS{7437678,
|
60 |
author={Suryani, Arie Ardiyanti and Widyantoro, Dwi Hendratmo and Purwarianti, Ayu and Sudaryat, Yayat},
|
|
|
65 |
number={},
|
66 |
pages={1-6},
|
67 |
doi={10.1109/ICITSI.2015.7437678}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
|
|
69 |
|
70 |
+
@article{lovenia2024seacrowd,
|
71 |
+
title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
|
72 |
+
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},
|
73 |
+
year={2024},
|
74 |
+
eprint={2406.10118},
|
75 |
+
journal={arXiv preprint arXiv: 2406.10118}
|
76 |
+
}
|
77 |
|
78 |
+
```
|