ToluClassics commited on
Commit
0f709f1
1 Parent(s): 44551ff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +206 -1
README.md CHANGED
@@ -1,3 +1,208 @@
1
  ---
2
- license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - bem
7
+ - fon
8
+ - ha
9
+ - ig
10
+ - kin
11
+ - sw
12
+ - wo
13
+ - yo
14
+ - zu
15
+ - tw
16
+ pretty_name: AfriQA
17
+ size_categories:
18
+ - 10K<n<100K
19
+ multilinguality:
20
+ - multilingual
21
+ tags:
22
+ - cross-lingual
23
+ - question-answering
24
+ - qa
25
  ---
26
+
27
+ # Dataset Card for AfriQA
28
+
29
+ ## Table of Contents
30
+ - [Table of Contents](#table-of-contents)
31
+ - [Dataset Description](#dataset-description)
32
+ - [Dataset Summary](#dataset-summary)
33
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
34
+ - [Languages](#languages)
35
+ - [Dataset Structure](#dataset-structure)
36
+ - [Data Instances](#data-instances)
37
+ - [Data Splits](#data-splits)
38
+ - [Dataset Creation](#dataset-creation)
39
+ - [Curation Rationale](#curation-rationale)
40
+ - [Source Data](#source-data)
41
+ - [Annotations](#annotations)
42
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
43
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
44
+ - [Social Impact of Dataset](#social-impact-of-dataset)
45
+ - [Discussion of Biases](#discussion-of-biases)
46
+ - [Other Known Limitations](#other-known-limitations)
47
+ - [Additional Information](#additional-information)
48
+ - [Dataset Curators](#dataset-curators)
49
+ - [Licensing Information](#licensing-information)
50
+ - [Citation Information](#citation-information)
51
+ - [Contributions](#contributions)
52
+
53
+ ## Dataset Description
54
+
55
+ - **Homepage:** [homepage](https://github.com/masakhane-io/afriqa)
56
+ - **Repository:** [github](https://github.com/masakhane-io/afriqa)
57
+ - **Paper:** [paper]()
58
+ - **Point of Contact:** [Masakhane](https://www.masakhane.io/) or oogundep@uwaterloo.ca
59
+
60
+ ### Dataset Summary
61
+
62
+ AfriQA is the first cross-lingual question answering (QA) dataset with a focus on African languages. The dataset includes over 12,000 XOR QA examples across 10 African languages, making it an invaluable resource for developing more equitable QA technology.
63
+
64
+ The train/validation/test sets are available for all the 10 languages.
65
+
66
+
67
+ ### Supported Tasks and Leaderboards
68
+
69
+ - `question-answering`: The performance in this task is measured with [F1](https://huggingface.co/metrics/f1) (higher is better) and [Exact Match Accuracy](https://huggingface.co/spaces/evaluate-metric/exact_match).
70
+
71
+ ### Languages
72
+
73
+ There are 20 languages available :
74
+ - Bemba (bem)
75
+ - Fon (fon)
76
+ - Hausa (hau)
77
+ - Igbo (ibo)
78
+ - Kinyarwanda (kin)
79
+ - Swahili (swą)
80
+ - Twi (twi)
81
+ - Wolof (wol)
82
+ - Yorùbá (yor)
83
+ - Zulu (zul)
84
+
85
+ ## Dataset Structure
86
+
87
+ ### Data Instances
88
+
89
+ - Data Format:
90
+ - id : Question ID
91
+ - question : Question in African Language
92
+ - translated_question : Question translated into a pivot language (English/French)
93
+ - answers : Answer in African Language
94
+ - lang : Datapoint Language (African Language) e.g `bem`
95
+ - split : Dataset Split
96
+ - translated_answer : Answer in Pivot Language
97
+ - translation_type : Translation type of question and answers
98
+
99
+
100
+ ```bash
101
+ { "id": 0,
102
+ "question": "Bushe icaalo ca Egypt caali tekwapo ne caalo cimbi?",
103
+ "translated_question": "Has the country of Egypt been colonized before?",
104
+ "answers": "['Emukwai']",
105
+ "lang": "bem",
106
+ "split": "dev",
107
+ "translated_answer": "['yes']",
108
+ "translation_type": "human_translation"
109
+ }
110
+ ```
111
+
112
+ ### Data Splits
113
+
114
+ For all languages, there are three splits.
115
+
116
+ The original splits were named `train`, `dev` and `test` and they correspond to the `train`, `validation` and `test` splits.
117
+
118
+ The splits have the following sizes :
119
+
120
+ | Language | train | dev | test |
121
+ |-----------------|------:|-----------:|-----:|
122
+ | Bemba | 502 | 503 | 314 |
123
+ | Fon | 427 | 428 | 386 |
124
+ | Hausa | 435 | 436 | 300 |
125
+ | Igbo | 417 | 418 | 409 |
126
+ | Kinyarwanda | 407 | 409 | 347 |
127
+ | Swahili | 415 | 417 | 302 |
128
+ | Twi | 451 | 452 | 490 |
129
+ | Wolof | 503 | 504 | 334 |
130
+ | Yoruba | 360 | 361 | 332 |
131
+ | Zulu | 387 | 388 | 325 |
132
+ | <b>Total</b> | <b>4333</b> | <b>4346</b> |<b>3560</b> |
133
+
134
+ ## Dataset Creation
135
+
136
+ ### Curation Rationale
137
+
138
+ The dataset was introduced to introduce question-answering resources to 10 languages that were under-served for natural language processing.
139
+
140
+ [More Information Needed]
141
+
142
+ ### Source Data
143
+
144
+ ...
145
+
146
+ #### Initial Data Collection and Normalization
147
+
148
+ ...
149
+
150
+ #### Who are the source language producers?
151
+
152
+ ...
153
+
154
+ ### Annotations
155
+
156
+ #### Annotation process
157
+
158
+ Details can be found here ...
159
+
160
+ #### Who are the annotators?
161
+
162
+ Annotators were recruited from [Masakhane](https://www.masakhane.io/)
163
+
164
+ ### Personal and Sensitive Information
165
+
166
+ ...
167
+
168
+ ## Considerations for Using the Data
169
+
170
+ ### Social Impact of Dataset
171
+ [More Information Needed]
172
+
173
+
174
+ ### Discussion of Biases
175
+ [More Information Needed]
176
+
177
+
178
+ ### Other Known Limitations
179
+
180
+ Users should keep in mind that the dataset only contains news text, which might limit the applicability of the developed systems to other domains.
181
+
182
+ ## Additional Information
183
+
184
+ ### Dataset Curators
185
+
186
+
187
+ ### Licensing Information
188
+
189
+ The licensing status of the data is CC 4.0 Non-Commercial
190
+
191
+ ### Citation Information
192
+
193
+ Provide the [BibTex](http://www.bibtex.org/)-formatted reference for the dataset. For example:
194
+
195
+ ```
196
+ @misc{ogundepo2023afriqa,
197
+ title={AfriQA: Cross-lingual Open-Retrieval Question Answering for African Languages},
198
+ author={Odunayo Ogundepo and Tajuddeen R. Gwadabe and Clara E. Rivera and Jonathan H. Clark and Sebastian Ruder and David Ifeoluwa Adelani and Bonaventure F. P. Dossou and Abdou Aziz DIOP and Claytone Sikasote and Gilles Hacheme and Happy Buzaaba and Ignatius Ezeani and Rooweither Mabuya and Salomey Osei and Chris Emezue and Albert Njoroge Kahira and Shamsuddeen H. Muhammad and Akintunde Oladipo and Abraham Toluwase Owodunni and Atnafu Lambebo Tonja and Iyanuoluwa Shode and Akari Asai and Tunde Oluwaseyi Ajayi and Clemencia Siro and Steven Arthur and Mofetoluwa Adeyemi and Orevaoghene Ahia and Aremu Anuoluwapo and Oyinkansola Awosan and Chiamaka Chukwuneke and Bernard Opoku and Awokoya Ayodele and Verrah Otiende and Christine Mwase and Boyd Sinkala and Andre Niyongabo Rubungo and Daniel A. Ajisafe and Emeka Felix Onwuegbuzia and Habib Mbow and Emile Niyomutabazi and Eunice Mukonde and Falalu Ibrahim Lawan and Ibrahim Said Ahmad and Jesujoba O. Alabi and Martin Namukombo and Mbonu Chinedu and Mofya Phiri and Neo Putini and Ndumiso Mngoma and Priscilla A. Amuok and Ruqayya Nasir Iro and Sonia Adhiambo},
199
+ year={2023},
200
+ eprint={2305.06897},
201
+ archivePrefix={arXiv},
202
+ primaryClass={cs.CL}
203
+ }
204
+ ```
205
+
206
+ ### Contributions
207
+
208
+ Thanks to [@ToluClassics](https://github.com/ToluClassics) for adding this dataset.