Datasets:

ArXiv:
License:
holylovenia commited on
Commit
c17778e
·
verified ·
1 Parent(s): 6428050

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: cc-by-sa-4.0
4
+ language:
5
+ - ace
6
+ - ban
7
+ - bjn
8
+ - bug
9
+ - ceb
10
+ - ilo
11
+ - ind
12
+ - jav
13
+ - kac
14
+ - khm
15
+ - lao
16
+ - lus
17
+ - min
18
+ - mya
19
+ - pag
20
+ - shn
21
+ - sun
22
+ - tgl
23
+ - tha
24
+ - vie
25
+ - war
26
+ - zsm
27
+ pretty_name: Sib 200
28
+ task_categories:
29
+ - topic-modeling
30
+ tags:
31
+ - topic-modeling
32
+ ---
33
+
34
+ SIB-200 is the largest publicly available topic classification dataset based on Flores-200 covering 205 languages and dialects.
35
+ The train/validation/test sets are available for all the 205 languages.
36
+
37
+
38
+ ## Languages
39
+
40
+ ace, ban, bjn, bug, ceb, ilo, ind, jav, kac, khm, lao, lus, min, mya, pag, shn, sun, tgl, tha, vie, war, zsm
41
+
42
+ ## Supported Tasks
43
+
44
+ Topic Modeling
45
+
46
+ ## Dataset Usage
47
+ ### Using `datasets` library
48
+ ```
49
+ from datasets import load_dataset
50
+ dset = datasets.load_dataset("SEACrowd/sib_200", trust_remote_code=True)
51
+ ```
52
+ ### Using `seacrowd` library
53
+ ```import seacrowd as sc
54
+ # Load the dataset using the default config
55
+ dset = sc.load_dataset("sib_200", schema="seacrowd")
56
+ # Check all available subsets (config names) of the dataset
57
+ print(sc.available_config_names("sib_200"))
58
+ # Load the dataset using a specific config
59
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
60
+ ```
61
+
62
+ 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).
63
+
64
+
65
+ ## Dataset Homepage
66
+
67
+ [https://github.com/dadelani/sib-200](https://github.com/dadelani/sib-200)
68
+
69
+ ## Dataset Version
70
+
71
+ Source: 1.0.0. SEACrowd: 2024.06.20.
72
+
73
+ ## Dataset License
74
+
75
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
76
+
77
+ ## Citation
78
+
79
+ If you are using the **Sib 200** dataloader in your work, please cite the following:
80
+ ```
81
+ @misc{adelani2023sib200,
82
+ title={SIB-200: A Simple, Inclusive, and Big Evaluation Dataset for Topic Classification in 200+ Languages and Dialects},
83
+ author={David Ifeoluwa Adelani and Hannah Liu and Xiaoyu Shen and Nikita Vassilyev and Jesujoba O. Alabi and Yanke Mao and Haonan Gao and Annie En-Shiun Lee},
84
+ year={2023},
85
+ eprint={2309.07445},
86
+ archivePrefix={arXiv},
87
+ primaryClass={cs.CL}
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
+ ```