Datasets:

Languages:
Zulu
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
expert-generated
Source Datasets:
original
ArXiv:
Tags:
stance-detection
License:
leondz commited on
Commit
15a9e50
1 Parent(s): 9fa7fd9

add README / dataset card

Browse files
Files changed (1) hide show
  1. README.md +187 -0
README.md ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert_generated
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - zu
8
+ licenses:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 1K<n<10K
14
+ source_datasets:
15
+ - original
16
+ task_categories:
17
+ - text_classification
18
+ task_ids:
19
+ - fact_checking
20
+ - sentiment-classification
21
+ paperswithcode_id:
22
+ pretty_name: ZUstance
23
+ ---
24
+
25
+ # Dataset Card for "zulu-stance"
26
+
27
+ ## Table of Contents
28
+ - [Dataset Description](#dataset-description)
29
+ - [Dataset Summary](#dataset-summary)
30
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
31
+ - [Languages](#languages)
32
+ - [Dataset Structure](#dataset-structure)
33
+ - [Data Instances](#data-instances)
34
+ - [Data Fields](#data-fields)
35
+ - [Data Splits](#data-splits)
36
+ - [Dataset Creation](#dataset-creation)
37
+ - [Curation Rationale](#curation-rationale)
38
+ - [Source Data](#source-data)
39
+ - [Annotations](#annotations)
40
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
41
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
42
+ - [Social Impact of Dataset](#social-impact-of-dataset)
43
+ - [Discussion of Biases](#discussion-of-biases)
44
+ - [Other Known Limitations](#other-known-limitations)
45
+ - [Additional Information](#additional-information)
46
+ - [Dataset Curators](#dataset-curators)
47
+ - [Licensing Information](#licensing-information)
48
+ - [Citation Information](#citation-information)
49
+ - [Contributions](#contributions)
50
+
51
+ ## Dataset Description
52
+
53
+ - **Homepage:** [https://arxiv.org/abs/2205.03153](https://arxiv.org/abs/2205.03153)
54
+ - **Repository:**
55
+ - **Paper:** [https://arxiv.org/pdf/2205.03153](https://arxiv.org/pdf/2205.03153)
56
+ - **Point of Contact:** [Leon Derczynski](https://github.com/leondz)
57
+ - **Size of downloaded dataset files:** 212.54 KiB
58
+ - **Size of the generated dataset:** 186.76 KiB
59
+ - **Total amount of disk used:** 399.30KiB
60
+
61
+ ### Dataset Summary
62
+
63
+ This is a stance detection dataset in the Zulu language. The data is translated to Zulu by Zulu native speakers, from English source texts.
64
+
65
+ Our paper aims at utilizing this progress made for English to transfers that knowledge into other languages, which is a non-trivial task due to the domain gap between English and the target languages. We propose a black-box non-intrusive method that utilizes techniques from Domain Adaptation to reduce the domain gap, without requiring any human expertise in the target language, by leveraging low-quality data in both a supervised and unsupervised manner. This allows us to rapidly achieve similar results for stance detection for the Zulu language, the target language in this work, as are found for English. A natively-translated dataset is used for evaluation of domain transfer.
66
+
67
+ This dataset only defines a `TEST` partition.
68
+
69
+ ### Supported Tasks and Leaderboards
70
+
71
+ *
72
+
73
+ ### Languages
74
+
75
+ Zulu (`bcp47:zu`)
76
+
77
+ ## Dataset Structure
78
+
79
+ ### Data Instances
80
+
81
+ #### zulu_stance
82
+
83
+ - **Size of downloaded dataset files:** 212.54 KiB
84
+ - **Size of the generated dataset:** 186.76 KiB
85
+ - **Total amount of disk used:** 399.30KiB
86
+
87
+ An example of 'train' looks as follows.
88
+
89
+ ```
90
+ {
91
+ 'id': '0',
92
+ 'text': 'ubukhulu be-islam buba sobala lapho i-smartphone ifaka i-ramayana njengo-ramadan. #semst',
93
+ 'target': 'Atheism',
94
+ 'stance': 1}
95
+
96
+ ```
97
+
98
+
99
+ ### Data Fields
100
+
101
+ - `id`: a `string` feature.
102
+ - `text`: a `string` expressing a stance.
103
+ - `target`: a `string` of the target/topic annotated here.
104
+ - `stance`: a class label representing the stance the text expresses towards the target. Full tagset with indices:
105
+
106
+ ```
107
+ 0: "FAVOR",
108
+ 1: "AGAINST",
109
+ 2: "NONE",
110
+ ```
111
+
112
+ ### Data Splits
113
+
114
+ | name |train|
115
+ |---------|----:|
116
+ |zulu_stance|1343 sentences|
117
+
118
+ ## Dataset Creation
119
+
120
+ ### Curation Rationale
121
+
122
+ To enable stance detection in Zulu and also to measure domain transfer in translation
123
+
124
+ ### Source Data
125
+
126
+ #### Initial Data Collection and Normalization
127
+
128
+ The original data is taken from [Semeval2016 task 6: Detecting stance in tweets.](https://aclanthology.org/S16-1003/),
129
+ and then translated manually to Zulu.
130
+
131
+ #### Who are the source language producers?
132
+
133
+ English-speaking Twitter users.
134
+
135
+ ### Annotations
136
+
137
+ #### Annotation process
138
+
139
+ See [Semeval2016 task 6: Detecting stance in tweets.](https://aclanthology.org/S16-1003/); the annotations are taken from there.
140
+
141
+ #### Who are the annotators?
142
+
143
+ See [Semeval2016 task 6: Detecting stance in tweets.](https://aclanthology.org/S16-1003/); the annotations are taken from there.
144
+
145
+ ### Personal and Sensitive Information
146
+
147
+ The data was public at the time of collection. User names are preserved.
148
+
149
+ ## Considerations for Using the Data
150
+
151
+ ### Social Impact of Dataset
152
+
153
+ There's a risk of user-deleted content being in this data. The data has NOT been vetted for any content, so there's a risk of [harmful text](https://arxiv.org/abs/2204.14256) content.
154
+
155
+ ### Discussion of Biases
156
+
157
+ While the data is in Zulu, the source text is not from or about Zulu-speakers, and so still expresses the social biases and topics found in English-speaking Twitter users. Further, some of the topics are USA-specific. The sentiments and ideas in this dataset do not represent Zulu speakers.
158
+
159
+ ### Other Known Limitations
160
+
161
+ The above limitations apply.
162
+
163
+ ## Additional Information
164
+
165
+ ### Dataset Curators
166
+
167
+ The dataset is curated by the paper's authors.
168
+
169
+ ### Licensing Information
170
+
171
+ The authors distribute this data under Creative Commons attribution license, CC-BY 4.0.
172
+
173
+ ### Citation Information
174
+
175
+ ```
176
+ @inproceedings{dlamini_zulu_stance,
177
+ title={Bridging the Domain Gap for Stance Detection for the Zulu language},
178
+ author={Dlamini, Gcinizwe and Bekkouch, Imad Eddine Ibrahim and Khan, Adil and Derczynski, Leon},
179
+ booktitle={Proceedings of IEEE IntelliSys},
180
+ year={2022}
181
+ }
182
+ ```
183
+
184
+
185
+ ### Contributions
186
+
187
+ Author-added dataset [@leondz](https://github.com/leondz)