holylovenia
commited on
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
license: other
|
4 |
+
language:
|
5 |
+
- vie
|
6 |
+
pretty_name: Vimqa
|
7 |
+
task_categories:
|
8 |
+
- question-answering
|
9 |
+
tags:
|
10 |
+
- question-answering
|
11 |
+
---
|
12 |
+
|
13 |
+
|
14 |
+
VIMQA, a new Vietnamese dataset with over 10,000 Wikipedia-based multi-hop question-answer pairs. The dataset is human-generated and has four main features:
|
15 |
+
The questions require advanced reasoning over multiple paragraphs.
|
16 |
+
Sentence-level supporting facts are provided, enabling the QA model to reason and explain the answer.
|
17 |
+
The dataset offers various types of reasoning to test the model's ability to reason and extract relevant proof.
|
18 |
+
The dataset is in Vietnamese, a low-resource language
|
19 |
+
|
20 |
+
|
21 |
+
This is a local dataset. You have to obtain this dataset separately from [{homepage}]({homepage}) to use this dataloader.
|
22 |
+
|
23 |
+
## Languages
|
24 |
+
|
25 |
+
vie
|
26 |
+
|
27 |
+
## Supported Tasks
|
28 |
+
|
29 |
+
Question Answering
|
30 |
+
|
31 |
+
## Dataset Usage
|
32 |
+
### Using `datasets` library
|
33 |
+
```
|
34 |
+
from datasets import load_dataset
|
35 |
+
dset = datasets.load_dataset("SEACrowd/vimqa", trust_remote_code=True)
|
36 |
+
```
|
37 |
+
### Using `seacrowd` library
|
38 |
+
```import seacrowd as sc
|
39 |
+
# Load the dataset using the default config
|
40 |
+
dset = sc.load_dataset("vimqa", schema="seacrowd")
|
41 |
+
# Check all available subsets (config names) of the dataset
|
42 |
+
print(sc.available_config_names("vimqa"))
|
43 |
+
# Load the dataset using a specific config
|
44 |
+
dset = sc.load_dataset_by_config_name(config_name="<config_name>")
|
45 |
+
```
|
46 |
+
|
47 |
+
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).
|
48 |
+
|
49 |
+
|
50 |
+
## Dataset Homepage
|
51 |
+
|
52 |
+
[https://github.com/vimqa/vimqa](https://github.com/vimqa/vimqa)
|
53 |
+
|
54 |
+
## Dataset Version
|
55 |
+
|
56 |
+
Source: 1.0.0. SEACrowd: 2024.06.20.
|
57 |
+
|
58 |
+
## Dataset License
|
59 |
+
|
60 |
+
Other License (others) | The licence terms for VimQA follows this EULA docs on their repo.
|
61 |
+
Please refer to the following doc of EULA (to review the permissions and request for access)
|
62 |
+
VIMQA EULA -- https://github.com/vimqa/vimqa/blob/main/VIMQA_EULA.pdf
|
63 |
+
|
64 |
+
|
65 |
+
## Citation
|
66 |
+
|
67 |
+
If you are using the **Vimqa** dataloader in your work, please cite the following:
|
68 |
+
```
|
69 |
+
|
70 |
+
@inproceedings{le-etal-2022-vimqa,
|
71 |
+
title = "{VIMQA}: A {V}ietnamese Dataset for Advanced Reasoning and Explainable Multi-hop Question Answering",
|
72 |
+
author = "Le, Khang and
|
73 |
+
Nguyen, Hien and
|
74 |
+
Le Thanh, Tung and
|
75 |
+
Nguyen, Minh",
|
76 |
+
editor = "Calzolari, Nicoletta and
|
77 |
+
B{'e}chet, Fr{'e}d{'e}ric and
|
78 |
+
Blache, Philippe and
|
79 |
+
Choukri, Khalid and
|
80 |
+
Cieri, Christopher and
|
81 |
+
Declerck, Thierry and
|
82 |
+
Goggi, Sara and
|
83 |
+
Isahara, Hitoshi and
|
84 |
+
Maegaard, Bente and
|
85 |
+
Mariani, Joseph and
|
86 |
+
Mazo, H{'e}l{'e}ne and
|
87 |
+
Odijk, Jan and
|
88 |
+
Piperidis, Stelios",
|
89 |
+
booktitle = "Proceedings of the Thirteenth Language Resources and Evaluation Conference",
|
90 |
+
month = jun,
|
91 |
+
year = "2022",
|
92 |
+
address = "Marseille, France",
|
93 |
+
publisher = "European Language Resources Association",
|
94 |
+
url = "https://aclanthology.org/2022.lrec-1.700",
|
95 |
+
pages = "6521--6529",
|
96 |
+
}
|
97 |
+
|
98 |
+
|
99 |
+
@article{lovenia2024seacrowd,
|
100 |
+
title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
|
101 |
+
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},
|
102 |
+
year={2024},
|
103 |
+
eprint={2406.10118},
|
104 |
+
journal={arXiv preprint arXiv: 2406.10118}
|
105 |
+
}
|
106 |
+
|
107 |
+
```
|