Datasets:

Modalities:
Text
Formats:
json
Languages:
Amharic
ArXiv:
Libraries:
Datasets
pandas
License:
Henok commited on
Commit
92eb899
1 Parent(s): 4b09e90

add more details to the dataset

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - am
5
+ ---
6
+
7
+ # AmQA: Amharic Question Answering Dataset
8
+
9
+
10
+ Amharic question and answer dataset in a prompt and completion format.
11
+
12
+ ## Dataset Details
13
+
14
+ ### Dataset Description
15
+
16
+ Abstract
17
+ Question Answering (QA) returns concise answers or answer lists from natural language text given a context document. To advance robust models' development, large amounts of resources go into curating QA datasets. There is a surge of QA datasets for languages like English, however, this is not the case for Amharic. Amharic, the official language of Ethiopia, is the second most spoken Semitic language in the world. There is no published or publicly available Amharic QA dataset. Hence, to foster the research in Amharic QA, we present the first Amharic QA (AmQA) dataset. We crowdsourced 2628 question-answer pairs over 378 Wikipedia articles. Additionally, we run an XLMRLarge-based baseline model to spark open- domain QA research interest. The best-performing baseline achieves an F-score of 69.58 and 71.74 in reader-retriever QA and reading comprehension settings respectively.
18
+
19
+ Dataset
20
+ In Amharic, interrogative sentences can be formulated using information-seeking pronouns like “ምን” (what), “መቼ” (when), “ማን” (who), “የት” (where), “የትኛው” (which), etc. and prepositional interrogative phrases like “ለምን” [ለ-ምን] (why), “በምን” [በ-ምን] (by what), etc. Besides, a verb phrase could be used to pose questions (Getahun 2013; Baye 2009). As shown bellow, the AmQA dataset contains context, question, and answer triplets. The contexts are articles collected from Amharic Wikipedia dump file. The question-answer pairs are created by crowdsourcing and annotated using the Haystack QA annotation tool. 2628 question and answer pairs are created from 378 documents. The whole AmQA dataset can be found here. We also split the datset into train, dev, and test with a size of 1728, 600, and 300 respectively.
21
+
22
+
23
+
24
+ - **Curated by:** [Tilahun Abedissa, Ricardo Usbeck, Yaregal Assabie]
25
+ - **Language(s) (NLP):** [Amharic]
26
+ - **License:** [MIT]
27
+
28
+ ### Dataset Sources
29
+
30
+ <!-- Provide the basic links for the dataset. -->
31
+
32
+ - **Repository:** [https://github.com/semantic-systems/amharic-qa]
33
+ - **Paper [optional]:** [https://arxiv.org/abs/2303.03290]
34
+
35
+ ## Dataset Structure
36
+
37
+ The dataset is restructured in a new JSON format of the following:
38
+ ```
39
+ formatted_json = {
40
+ "prompt": f"ከዚህ በታች በተሰጠው አውድ/አንቀጽ መሰረት የተሰጠውን ጥያቄ መልሱ:\n{row['context']}\n\n{row['question']}",
41
+ "completion": f"ለተሰጠው ጥያቄ መልሱ {row['answer_text']} ነው።"
42
+ }
43
+
44
+ ```
45
+
46
+ ## Citation
47
+
48
+ **BibTeX:**
49
+ ```
50
+ [@misc{abedissa2023amqa,
51
+ title={AmQA: Amharic Question Answering Dataset},
52
+ author={Tilahun Abedissa and Ricardo Usbeck and Yaregal Assabie},
53
+ year={2023},
54
+ eprint={2303.03290},
55
+ archivePrefix={arXiv},
56
+ primaryClass={cs.CL}
57
+ }]
58
+ ```