holylovenia commited on
Commit
bbdff5d
·
verified ·
1 Parent(s): 11ac9a3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: mit
4
+ language:
5
+ - ind
6
+ - jav
7
+ - sun
8
+ pretty_name: Mabl
9
+ task_categories:
10
+ - question-answering
11
+ tags:
12
+ - question-answering
13
+ ---
14
+
15
+ \
16
+ The MABL (Metaphors Across Borders and Languages) dataset is a collection of
17
+ 6,366 figurative language expressions from seven languages, crafted to improve
18
+ multilingual models' understanding of figurative speech and its linguistic
19
+ variations. It was built by crowdsourcing native speakers to generate paired
20
+ metaphors that began with the same words but had different meanings, as well as
21
+ the literal interpretations of both phrases. Each expression was checked by
22
+ fluent speakers to ensure they were clear, appropriate, and followed the format,
23
+ discarding any that didn't meet these standards.
24
+
25
+
26
+ ## Languages
27
+
28
+ ind, jav, sun
29
+
30
+ ## Supported Tasks
31
+
32
+ Question Answering
33
+
34
+ ## Dataset Usage
35
+ ### Using `datasets` library
36
+ ```
37
+ from datasets import load_dataset
38
+ dset = datasets.load_dataset("SEACrowd/mabl", 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("mabl", schema="seacrowd")
44
+ # Check all available subsets (config names) of the dataset
45
+ print(sc.available_config_names("mabl"))
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/simran-khanuja/Multilingual-Fig-QA](https://github.com/simran-khanuja/Multilingual-Fig-QA)
56
+
57
+ ## Dataset Version
58
+
59
+ Source: 1.0.0. SEACrowd: 2024.06.20.
60
+
61
+ ## Dataset License
62
+
63
+ MIT (mit)
64
+
65
+ ## Citation
66
+
67
+ If you are using the **Mabl** dataloader in your work, please cite the following:
68
+ ```
69
+
70
+ @inproceedings{kabra-etal-2023-multi,
71
+ title = "Multi-lingual and Multi-cultural Figurative Language Understanding",
72
+ author = "Kabra, Anubha and
73
+ Liu, Emmy and
74
+ Khanuja, Simran and
75
+ Aji, Alham Fikri and
76
+ Winata, Genta and
77
+ Cahyawijaya, Samuel and
78
+ Aremu, Anuoluwapo and
79
+ Ogayo, Perez and
80
+ Neubig, Graham",
81
+ editor = "Rogers, Anna and
82
+ Boyd-Graber, Jordan and
83
+ Okazaki, Naoaki",
84
+ booktitle = "Findings of the Association for Computational Linguistics: ACL 2023",
85
+ month = jul,
86
+ year = "2023",
87
+ address = "Toronto, Canada",
88
+ publisher = "Association for Computational Linguistics",
89
+ url = "https://aclanthology.org/2023.findings-acl.525",
90
+ doi = "10.18653/v1/2023.findings-acl.525",
91
+ pages = "8269--8284",
92
+ }
93
+
94
+
95
+ @article{lovenia2024seacrowd,
96
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
97
+ 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},
98
+ year={2024},
99
+ eprint={2406.10118},
100
+ journal={arXiv preprint arXiv: 2406.10118}
101
+ }
102
+
103
+ ```