Datasets:

Modalities:
Text
Formats:
json
DOI:
Libraries:
Datasets
Dask
License:
azrilhafizi commited on
Commit
0bef5d8
·
verified ·
1 Parent(s): 05cf98a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,3 +1,44 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # MaLLM-Bench - Malaysian Exam Benchmark Dataset
6
+
7
+ ## Dataset Summary
8
+ The Malaysian Exam Benchmark Dataset is a collection of questions derived from Malaysia’s national examinations, designed to evaluate the performance of Large Language Models (LLMs) in understanding the Malay language and its cultural nuances. This dataset addresses gaps in existing benchmarks like MMLU and its translations by incorporating culturally relevant and contextually rich content.
9
+
10
+ The dataset includes questions from primary and secondary school exams such as Sijil Pelajaran Malaysia (SPM), Penilaian Menengah Rendah (PMR), Pentaksiran Tingkatan Tiga (PT3), Ujian Pencapaian Sekolah Rendah (UPSR). The subjects span various areas of study, such as history, geography, and Islamic study, making it a well-rounded resource for evaluating LLMs on tasks that require both language understanding and cultural relevance.
11
+
12
+ | Subject | Question Count |
13
+ |--------------------------|----------------|
14
+ | Accounting | 793 |
15
+ | Biology | 311 |
16
+ | Business Study | 731 |
17
+ | Chemistry | 432 |
18
+ | Design and Technology | 100 |
19
+ | Economic Study | 314 |
20
+ | General Study | 220 |
21
+ | Geography | 161 |
22
+ | History | 1287 |
23
+ | Islamic Study | 216 |
24
+ | Malay Language | 1363 |
25
+ | Physical Education | 144 |
26
+ | Physics | 311 |
27
+ | Science | 318 |
28
+
29
+ ## Dataset Structure
30
+ ### Data Instances
31
+ An example from general study looks as follows:
32
+ ~~~
33
+ {
34
+ "question": "Antara yang berikut, yang manakah bidang kuasa bersama Kerajaan Persekutuan dan Kerajaan Negeri?",
35
+ "options": [
36
+ "Pendidikan",
37
+ "Tanah",
38
+ "Perumahan",
39
+ "Perpustakaan"
40
+ ],
41
+ "answer": 3,
42
+ "subject": "general_study"
43
+ }
44
+ ~~~