shmuhammad commited on
Commit
d5014cd
1 Parent(s): b6b08a4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +228 -0
README.md ADDED
@@ -0,0 +1,228 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ task_ids:
5
+ - sentiment-analysis
6
+ - sentiment-classification
7
+ - sentiment-scoring
8
+ - semantic-similarity-classification
9
+ - semantic-similarity-scoring
10
+ tags:
11
+ - twitter:sentiment analysis, africa:sentiment analysis
12
+ multilinguality:
13
+ - monolingual
14
+ - multilingual
15
+ size_categories:
16
+ - 100K<n<1M
17
+ language:
18
+ - am
19
+ - ha
20
+ - ig
21
+ - yo
22
+ - sw
23
+ - rw
24
+ - om
25
+ - ti
26
+ - ar
27
+ - pt
28
+ - ama
29
+ - kin
30
+ - pcm
31
+ - tso
32
+ - arq
33
+ - ary
34
+
35
+ pretty_name: AfriSenti
36
+ ---
37
+
38
+ # Dataset Card for AfriSenti Dataset
39
+
40
+ ## Dataset Summary
41
+
42
+ AfriSenti is the largest sentiment analysis dataset for under-represented African languages, covering 110,000+ annotated tweets in 14 African languages (Amharic, Algerian Arabic, Hausa, Igbo, Kinyarwanda, Moroccan Arabic, Mozambican Portuguese, Nigerian Pidgin, Oromo, Swahili, Tigrinya, Twi, Xitsonga, and Yoruba).
43
+
44
+ The datasets are used in the first Afrocentric SemEval shared task, SemEval 2023 Task 12: Sentiment analysis for African languages (AfriSenti-SemEval). AfriSenti allows the research community to build sentiment analysis systems for various African languages and enables the study of sentiment and contemporary language use in African languages.
45
+
46
+ - **Repository:**
47
+
48
+ https://github.com/afrisenti-semeval/afrisent-semeval-2023
49
+
50
+ - **Paper:**
51
+
52
+ 1. [NaijaSenti: A Nigerian Twitter Sentiment Corpus for Multilingual Sentiment Analysis](https://arxiv.org/pdf/2201.08277.pdf)
53
+
54
+
55
+ - **Leaderboard:**
56
+ - **Point of Contact:**
57
+
58
+
59
+ ### Dataset Summary
60
+
61
+
62
+ ### Supported Tasks and Leaderboards
63
+
64
+ [SemEval 2023 Task 12 : Sentiment Analysis for African Languages](https://codalab.lisn.upsaclay.fr/competitions/7320)
65
+
66
+
67
+ ### Languages
68
+
69
+ 14 African languages (Amharic, Algerian Arabic, Hausa, Igbo, Kinyarwanda, Moroccan Arabic, Mozambican Portuguese, Nigerian Pidgin, Oromo, Swahili, Tigrinya, Twi, Xitsonga, and Yoruba).
70
+
71
+
72
+
73
+ ## Dataset Structure
74
+
75
+ ### Data Instances
76
+
77
+ For each instance, there is a string for the tweet and a string for the label. See the AfriSenti [dataset viewer](https://huggingface.co/datasets/shmuhammad/AfriSenti/viewer/shmuhammad--AfriSenti/train) to explore more examples.
78
+
79
+
80
+ ```
81
+ {
82
+ "tweet": "string",
83
+ "label": "string"
84
+ }
85
+ ```
86
+
87
+
88
+ ### Data Fields
89
+
90
+ The data fields are:
91
+
92
+ ```
93
+ tweet: a string feature.
94
+ label: a classification label, with possible values including positive, negative and neutral.
95
+ ```
96
+
97
+
98
+ ### Data Splits
99
+
100
+ The AfriSenti dataset has 3 splits: train, validation, and test. Below are the statistics for Version 1.0.0 of the dataset.
101
+
102
+ | | ama | arq | hau | ibo | ary | orm | pcm | pt-MZ | kin | swa | tir | tso | twi | yo |
103
+ |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
104
+ | train | 5,982 | 1,652 | 14,173 | 10,193 | 5,584| - | 5,122 | 3,064 | 3,303 | 1,811 | - | 805 | 3,482| 8,523 |
105
+ | dev | 1,498 | 415 | 2,678 | 1,842 | 1,216 | 397 | 1,282 | 768 | 828 | 454 | 399 | 204 | 389 | 2,091 |
106
+ | test | 2,000 | 959 | 5,304 | 3,683 | 2,962 | 2,097 | 4,155 | 3,663 | 1,027 | 749 | 2,001 | 255 | 950 | 4,516 |
107
+ | total | 9,483 | 3,062 | 22,155 | 15,718 | 9,762 | 2,494 | 10,559 | 7,495 | 5,158 | 3,014 | 2,400 | 1,264 | 4,821 | 15,130 |
108
+
109
+
110
+
111
+ ## Dataset Creation
112
+
113
+ ### Curation Rationale
114
+
115
+ AfriSenti Version 1.0.0 aimed to be used in the first Afrocentric SemEval shared task **[SemEval 2023 Task 12: Sentiment analysis for African languages (AfriSenti-SemEval)](https://afrisenti-semeval.github.io)**.
116
+
117
+
118
+ ### Source Data
119
+
120
+ Twitter
121
+
122
+ #### Initial Data Collection and Normalization
123
+
124
+ [More Information Needed]
125
+
126
+ #### Who are the source language producers?
127
+
128
+ [More Information Needed]
129
+
130
+ ### Annotations
131
+
132
+ #### Annotation process
133
+
134
+ [More Information Needed]
135
+
136
+ #### Who are the annotators?
137
+
138
+
139
+
140
+ [More Information Needed]
141
+
142
+ ### Personal and Sensitive Information
143
+
144
+ We anonymized the tweets by replacing all *@mentions* by *@user* and removed all URLs.
145
+
146
+
147
+ ## Considerations for Using the Data
148
+
149
+ ### Social Impact of Dataset
150
+
151
+ The Afrisenti dataset has the potential to improve sentiment analysis for African languages, which is essential for understanding and analyzing the diverse perspectives of people in the African continent. This dataset can enable researchers and developers to create sentiment analysis models that are specific to African languages, which can be used to gain insights into the social, cultural, and political views of people in African countries. Furthermore, this dataset can help address the issue of underrepresentation of African languages in natural language processing, paving the way for more equitable and inclusive AI technologies.
152
+
153
+ [More Information Needed]
154
+
155
+ ### Discussion of Biases
156
+
157
+ [More Information Needed]
158
+
159
+ ### Other Known Limitations
160
+
161
+ [More Information Needed]
162
+
163
+ ## Additional Information
164
+
165
+ ### Dataset Curators
166
+
167
+ The dataset was orginally created for four Nigerian languages (Hausa, Yoruba, Igbo and Nigerian-Pidgin) in NaijaSenti paper and Amharic languages in .. paper. The dataset is expanded to other African languages.
168
+ The following team help in in curating the dataset in each languages
169
+
170
+
171
+
172
+ | Language | Dataset Curators |
173
+ |---|---|
174
+ | Algerian Arabic (arq) | Nedjma Ousidhoum |
175
+ | Amharic (ama) | Abinew Ali Ayele, Seid Muhie Yimam |
176
+ | Hausa (hau) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello |
177
+ | Igbo (ibo) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello |
178
+ | Kinyarwanda (kin)| Samuel Rutund |
179
+ | Moroccan Arabic/Darija (ary) | Oumaima Hourran |
180
+ | Mozambique Portuguese (pt-MZ) | Felermino Dário Mário António Ali |
181
+ | Nigerian Pidgin (pcm) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello |
182
+ | Oromo (orm) | Abinew Ali Ayele, Seid Muhie Yimam, Hagos Tesfahun Gebremichael, Sisay Adugna Chala, Hailu Beshada Balcha, Wendimu Baye Messell,Tadesse Belay |
183
+ | Swahili (swa) | Davis Davis |
184
+ | Tigrinya (tir) | Abinew Ali Ayele, Seid Muhie Yimam, Hagos Tesfahun Gebremichael, Sisay Adugna Chala, Hailu Beshada Balcha, Wendimu Baye Messell,Tadesse Belay |
185
+ | Twi (twi) | Salomey Osei, Bernard Opoku, Steven Arthur |
186
+ | Xithonga (tso) | Felermino Dário Mário António Ali |
187
+ | Yoruba (yor) | Shamsuddeen Hassan Muhammad, Idris Abdulmumin, Ibrahim Said, Bello Shehu Bello |
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+ ### Licensing Information
196
+
197
+ This AfriSenti is licensed under a Creative Commons Attribution 4.0 International License
198
+
199
+
200
+
201
+
202
+ ### Citation Information
203
+
204
+ ```
205
+ @inproceedings{muhammad-etal-2023-semeval,
206
+ title="{S}em{E}val-2023 Task 12: Sentiment Analysis for African Languages ({A}fri{S}enti-{S}em{E}val)",
207
+ author="Muhammad, Shamsuddeen Hassan and
208
+ Yimam, Seid and
209
+ Abdulmumin, Idris and
210
+ Ahmad, Ibrahim Sa'id and
211
+ Ousidhoum, Nedjma, and
212
+ Ayele, Abinew, and
213
+ Adelani, David and
214
+ Ruder, Sebastian and
215
+ Beloucif, Meriem and
216
+ Bello, Shehu Bello and
217
+ Mohammad, Saif M.",
218
+ booktitle="Proceedings of the 17th International Workshop on Semantic Evaluation (SemEval-2023)",
219
+ month=jul,
220
+ year="2023",
221
+ }
222
+ ```
223
+
224
+
225
+
226
+ ### Contributions
227
+
228
+ [More Information Needed]