holylovenia commited on
Commit
189b294
1 Parent(s): 6d9d872

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-nc-4.0
4
+ language:
5
+ - ind
6
+ - vie
7
+ - zlm
8
+ - fil
9
+ pretty_name: Seaeval
10
+ task_categories:
11
+ - commonsense-reasoning
12
+ - question-answering
13
+ tags:
14
+ - commonsense-reasoning
15
+ - question-answering
16
+ ---
17
+
18
+ SeaEval is a benchmark toolkit for evaluating multilingual LLMs. The benchmark contains 28 datasets,
19
+ covering 7 languages. It contains 2 datasets for cross-lingual consistency, each containing parallel
20
+ questions for the 7 represented languages. It alsoc ontains 4 datasets for cultural reasoning
21
+ (multiple choice Q&A) that are in English but focused on regions including Singapore and Philipines.
22
+
23
+ This dataloader provides examples for Indonesia, Vietnamese, Malay, and Filipino.
24
+
25
+
26
+ ## Languages
27
+
28
+ ind, vie, zlm, fil
29
+
30
+ ## Supported Tasks
31
+
32
+ Commonsense Reasoning, Question Answering
33
+
34
+ ## Dataset Usage
35
+ ### Using `datasets` library
36
+ ```
37
+ from datasets import load_dataset
38
+ dset = datasets.load_dataset("SEACrowd/seaeval", trust_remote_code=True)
39
+ ```
40
+ ### Using `seacrowd` library
41
+ ```import seacrowd as sc
42
+ # Load the dataset using the default config
43
+ dset = sc.load_dataset("seaeval", schema="seacrowd")
44
+ # Check all available subsets (config names) of the dataset
45
+ print(sc.available_config_names("seaeval"))
46
+ # Load the dataset using a specific config
47
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
48
+ ```
49
+
50
+ 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).
51
+
52
+
53
+ ## Dataset Homepage
54
+
55
+ [https://github.com/SeaEval/SeaEval](https://github.com/SeaEval/SeaEval)
56
+
57
+ ## Dataset Version
58
+
59
+ Source: 1.0.0. SEACrowd: 2024.06.20.
60
+
61
+ ## Dataset License
62
+
63
+ Creative Commons Attribution Non Commercial 4.0 (cc-by-nc-4.0)
64
+
65
+ ## Citation
66
+
67
+ If you are using the **Seaeval** dataloader in your work, please cite the following:
68
+ ```
69
+ @article{SeaEval2023,
70
+ title={SeaEval for Multilingual Foundation Models: From Cross-Lingual Alignment to Cultural Reasoning},
71
+ author={Wang, Bin and Liu, Zhengyuan and Huang, Xin and Jiao, Fangkai and Ding, Yang and Aw, Ai Ti and Chen, Nancy F.},
72
+ journal={arXiv preprint arXiv:2309.04766},
73
+ year={2023},
74
+ url={https://github.com/SeaEval/SeaEval}
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
+ ```