Datasets:

Modalities:
Text
Formats:
json
Languages:
Amharic
ArXiv:
Libraries:
Datasets
pandas
License:
File size: 3,512 Bytes
92eb899
 
 
 
7265f21
 
 
 
92eb899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d392a23
 
 
 
92eb899
d392a23
92eb899
 
 
 
c7654cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92eb899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
license: mit
language:
- am
task_categories:
- question-answering
size_categories:
- 1K<n<10K
---

# AmQA: Amharic Question Answering Dataset


Amharic question and answer dataset in a prompt and completion format.

## Dataset Details

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.
### Dataset Sources

<!-- Provide the basic links for the dataset. -->

- **Repository:** [https://github.com/semantic-systems/amharic-qa]
- **Paper [optional]:** [https://arxiv.org/abs/2303.03290]

- **Curated by:** [Tilahun Abedissa, Ricardo Usbeck, Yaregal Assabie]
- **Language(s) (NLP):** [Amharic]
- **License:** [MIT]

## Dataset Structure
The dataset is classified into 70% train, 20% test, and 10% dev datasets.

The dataset is restructured in a new JSON format of the following: 
```
formatted_json = {
            "inputs": "ከዚህ በታች በተገለጸው አውድ ተከታዩን ጥያቄ ይመልሱ፡ {context} {question}",
            "targets": "ከጥያቄው ጋር የሚስማማው ምላሽ {answer_text} ነው።",
            
            "inputs": "ከዚህ በታች ያለውን ዝርዝር መረጃ በመጠቀም ለሚከተለው ጥያቄ መልስ ይስጡ፡ {context} {question}",
            "targets": "ከጥያቄው አንጻር ትክክለኛው መልስ {answer_text} ነው።",
            
            "inputs": "ከዚህ በታች ያለውን ጽሑፍ በማጣቀስ እባክዎን ለሚከተለው መልስ ይስጡ {context} {question}",
            "targets": "ለጥያቄው መልስ {answer_text} ነው።",
            
            "inputs": "የተሰጠውን ጥያቄ ለመመለስ ከዚህ በታች የቀረበውን መረጃ ይመልከቱ፡ {context} {question}",
            "targets": "ለተጠቀሰው ጥያቄ ትክክለኛው ምላሽ {answer_text} ነው።",
            
            "inputs": "ለሚከተለው ጥያቄ ምላሽ ለመስጠት ከዚህ በታች የቀረበውን አውድ ተጠቀም፡ {context} {question}",
            "targets": "ለጥያቄው መልሱ {answer_text} ነው።",
            
            "inputs": "የተሰጠውን ጥያቄ ከዚህ በታች በተሰጠው አውድ መሰረት መልሱ፡ {context} {question}",
            "targets": "ለጥያቄው ትክክለኛው ምላሽ {answer_text} ነው።"
        }

```

## Citation

**BibTeX:**
```
[@misc{abedissa2023amqa,
      title={AmQA: Amharic Question Answering Dataset}, 
      author={Tilahun Abedissa and Ricardo Usbeck and Yaregal Assabie},
      year={2023},
      eprint={2303.03290},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}]
```