Datasets:

ArXiv:
License:
holylovenia commited on
Commit
47e66fc
1 Parent(s): 2a1ca9b

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: apache-2.0
4
+ language:
5
+ - ceb
6
+ - tha
7
+ - mya
8
+ - zsm
9
+ - jav
10
+ - ind
11
+ - vie
12
+ - sun
13
+ - ace
14
+ - bjn
15
+ - khm
16
+ - lao
17
+ - min
18
+ pretty_name: Aya Evaluation Suite
19
+ task_categories:
20
+ - instruction-tuning
21
+ tags:
22
+ - instruction-tuning
23
+ ---
24
+
25
+
26
+ Aya Evaluation Suite contains a total of 26,750 open-ended conversation-style
27
+ prompts to evaluate multilingual open-ended generation quality.
28
+
29
+
30
+ ## Languages
31
+
32
+ ceb, tha, mya, zsm, jav, ind, vie, sun, ace, bjn, khm, lao, min
33
+
34
+ ## Supported Tasks
35
+
36
+ Instruction Tuning
37
+
38
+ ## Dataset Usage
39
+ ### Using `datasets` library
40
+ ```
41
+ from datasets import load_dataset
42
+ dset = datasets.load_dataset("SEACrowd/aya_evaluation_suite", trust_remote_code=True)
43
+ ```
44
+ ### Using `seacrowd` library
45
+ ```import seacrowd as sc
46
+ # Load the dataset using the default config
47
+ dset = sc.load_dataset("aya_evaluation_suite", schema="seacrowd")
48
+ # Check all available subsets (config names) of the dataset
49
+ print(sc.available_config_names("aya_evaluation_suite"))
50
+ # Load the dataset using a specific config
51
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
52
+ ```
53
+
54
+ 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).
55
+
56
+
57
+ ## Dataset Homepage
58
+
59
+ [https://huggingface.co/datasets/CohereForAI/aya_evaluation_suite](https://huggingface.co/datasets/CohereForAI/aya_evaluation_suite)
60
+
61
+ ## Dataset Version
62
+
63
+ Source: 1.0.0. SEACrowd: 2024.06.20.
64
+
65
+ ## Dataset License
66
+
67
+ Apache license 2.0 (apache-2.0)
68
+
69
+ ## Citation
70
+
71
+ If you are using the **Aya Evaluation Suite** dataloader in your work, please cite the following:
72
+ ```
73
+
74
+ @misc{singh2024aya,
75
+ title={Aya Dataset: An Open-Access Collection for Multilingual Instruction Tuning},
76
+ author={Shivalika Singh and Freddie Vargus and Daniel Dsouza and Börje F. Karlsson and
77
+ Abinaya Mahendiran and Wei-Yin Ko and Herumb Shandilya and Jay Patel and Deividas
78
+ Mataciunas and Laura OMahony and Mike Zhang and Ramith Hettiarachchi and Joseph
79
+ Wilson and Marina Machado and Luisa Souza Moura and Dominik Krzemiński and Hakimeh
80
+ Fadaei and Irem Ergün and Ifeoma Okoh and Aisha Alaagib and Oshan Mudannayake and
81
+ Zaid Alyafeai and Vu Minh Chien and Sebastian Ruder and Surya Guthikonda and Emad A.
82
+ Alghamdi and Sebastian Gehrmann and Niklas Muennighoff and Max Bartolo and Julia Kreutzer
83
+ and Ahmet Üstün and Marzieh Fadaee and Sara Hooker},
84
+ year={2024},
85
+ eprint={2402.06619},
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
+ ```