Datasets:

ArXiv:
License:
holylovenia commited on
Commit
e4b2304
·
verified ·
1 Parent(s): e7e6927

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: cc-by-sa-4.0
4
+ language:
5
+ - tha
6
+ - vie
7
+ pretty_name: Xquadr
8
+ task_categories:
9
+ - question-answering-retrieval
10
+ tags:
11
+ - question-answering-retrieval
12
+ ---
13
+
14
+ XQuAD-R is a retrieval version of the XQuAD dataset (a cross-lingual extractive
15
+ QA dataset) that is a part of the LAReQA benchmark. Like XQuAD, XQUAD-R is an
16
+ 11-way parallel dataset, where each question (out of around 1200) appears in 11
17
+ different languages and has 11 parallel correct answers across the languages. It
18
+ is designed so as to include parallel QA pairs across languages, allowing
19
+ questions to be matched with answers from different languages. The span-tagging
20
+ task in XQuAD is converted into a retrieval task by breaking up each contextual
21
+ paragraph into sentences, and treating each sentence as a possible target
22
+ answer. There are around 1000 candidate answers in each language.
23
+
24
+
25
+ ## Languages
26
+
27
+ tha, vie
28
+
29
+ ## Supported Tasks
30
+
31
+ Question Answering Retrieval
32
+
33
+ ## Dataset Usage
34
+ ### Using `datasets` library
35
+ ```
36
+ from datasets import load_dataset
37
+ dset = datasets.load_dataset("SEACrowd/xquadr", trust_remote_code=True)
38
+ ```
39
+ ### Using `seacrowd` library
40
+ ```import seacrowd as sc
41
+ # Load the dataset using the default config
42
+ dset = sc.load_dataset("xquadr", schema="seacrowd")
43
+ # Check all available subsets (config names) of the dataset
44
+ print(sc.available_config_names("xquadr"))
45
+ # Load the dataset using a specific config
46
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
47
+ ```
48
+
49
+ 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).
50
+
51
+
52
+ ## Dataset Homepage
53
+
54
+ [https://github.com/google-research-datasets/lareqa](https://github.com/google-research-datasets/lareqa)
55
+
56
+ ## Dataset Version
57
+
58
+ Source: 1.1.0. SEACrowd: 2024.06.20.
59
+
60
+ ## Dataset License
61
+
62
+ Creative Commons Attribution Share Alike 4.0 (cc-by-sa-4.0)
63
+
64
+ ## Citation
65
+
66
+ If you are using the **Xquadr** dataloader in your work, please cite the following:
67
+ ```
68
+ @article{,@inproceedings{roy-etal-2020-lareqa,
69
+ title = "{LAR}e{QA}: Language-Agnostic Answer Retrieval from a Multilingual Pool",
70
+ author = "Roy, Uma and
71
+ Constant, Noah and
72
+ Al-Rfou, Rami and
73
+ Barua, Aditya and
74
+ Phillips, Aaron and
75
+ Yang, Yinfei",
76
+ editor = "Webber, Bonnie and
77
+ Cohn, Trevor and
78
+ He, Yulan and
79
+ Liu, Yang",
80
+ booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
81
+ month = nov,
82
+ year = "2020",
83
+ address = "Online",
84
+ publisher = "Association for Computational Linguistics",
85
+ url = "https://aclanthology.org/2020.emnlp-main.477",
86
+ doi = "10.18653/v1/2020.emnlp-main.477",
87
+ pages = "5919--5930",
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
+ ```