Datasets:

ArXiv:
License:
holylovenia commited on
Commit
6db5610
1 Parent(s): 6ddb07e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-nc-sa-4.0
4
+ language:
5
+ - ind
6
+ - ban
7
+ - mad
8
+ - nij
9
+ - sun
10
+ - jav
11
+ - mak
12
+ - bjn
13
+ - abl
14
+ pretty_name: Indommlu
15
+ task_categories:
16
+ - question-answering
17
+ tags:
18
+ - question-answering
19
+ ---
20
+
21
+
22
+ IndoMMLU is the first multi-task language understanding benchmark for Indonesian culture and languages, which consists
23
+ of questions from primary school to university entrance exams in Indonesia. By employing professional teachers, we
24
+ obtain 14,906 questions across 63 tasks and education levels, with 46% of the questions focusing on assessing
25
+ proficiency in the Indonesian language and knowledge of nine local languages and cultures in Indonesia.
26
+
27
+
28
+ ## Languages
29
+
30
+ ind, ban, mad, nij, sun, jav, mak, bjn, abl
31
+
32
+ ## Supported Tasks
33
+
34
+ Question Answering
35
+
36
+ ## Dataset Usage
37
+ ### Using `datasets` library
38
+ ```
39
+ from datasets import load_dataset
40
+ dset = datasets.load_dataset("SEACrowd/indommlu", trust_remote_code=True)
41
+ ```
42
+ ### Using `seacrowd` library
43
+ ```import seacrowd as sc
44
+ # Load the dataset using the default config
45
+ dset = sc.load_dataset("indommlu", schema="seacrowd")
46
+ # Check all available subsets (config names) of the dataset
47
+ print(sc.available_config_names("indommlu"))
48
+ # Load the dataset using a specific config
49
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
50
+ ```
51
+
52
+ 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).
53
+
54
+
55
+ ## Dataset Homepage
56
+
57
+ [https://huggingface.co/datasets/indolem/IndoMMLU](https://huggingface.co/datasets/indolem/IndoMMLU)
58
+
59
+ ## Dataset Version
60
+
61
+ Source: 1.0.0. SEACrowd: 2024.06.20.
62
+
63
+ ## Dataset License
64
+
65
+ Creative Commons Attribution Non Commercial Share Alike 4.0 (cc-by-nc-sa-4.0)
66
+
67
+ ## Citation
68
+
69
+ If you are using the **Indommlu** dataloader in your work, please cite the following:
70
+ ```
71
+
72
+ @inproceedings{koto-etal-2023-large,
73
+ title = "Large Language Models Only Pass Primary School Exams in {I}ndonesia: A Comprehensive Test on {I}ndo{MMLU}",
74
+ author = "Koto, Fajri and
75
+ Aisyah, Nurul and
76
+ Li, Haonan and
77
+ Baldwin, Timothy",
78
+ editor = "Bouamor, Houda and
79
+ Pino, Juan and
80
+ Bali, Kalika",
81
+ booktitle = "Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing",
82
+ month = dec,
83
+ year = "2023",
84
+ address = "Singapore",
85
+ publisher = "Association for Computational Linguistics",
86
+ url = "https://aclanthology.org/2023.emnlp-main.760",
87
+ doi = "10.18653/v1/2023.emnlp-main.760",
88
+ pages = "12359--12374",
89
+ }
90
+
91
+
92
+ @article{lovenia2024seacrowd,
93
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
94
+ 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},
95
+ year={2024},
96
+ eprint={2406.10118},
97
+ journal={arXiv preprint arXiv: 2406.10118}
98
+ }
99
+
100
+ ```