Datasets:

Sub-tasks:
fact-checking
Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
found
Annotations Creators:
crowdsourced
ArXiv:
Tags:
stance-detection
License:
leondz commited on
Commit
707668c
1 Parent(s): 98d0ff2

update metadata

Browse files
Files changed (2) hide show
  1. README.md +188 -0
  2. rumoureval_2019.py +24 -10
README.md CHANGED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - crowdsourced
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: RumourEval 2019
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets: []
16
+ task_categories:
17
+ - text-classification
18
+ task_ids:
19
+ - fact-checking
20
+ - text-classification-other-stance-detection
21
+ ---
22
+
23
+
24
+
25
+ # Dataset Card for "rumoureval_2019"
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://competitions.codalab.org/competitions/19938](https://competitions.codalab.org/competitions/19938)
54
+ - **Repository:** [https://figshare.com/articles/dataset/RumourEval_2019_data/8845580](https://figshare.com/articles/dataset/RumourEval_2019_data/8845580)
55
+ - **Paper:** [https://aclanthology.org/S19-2147/](https://aclanthology.org/S19-2147/), [https://arxiv.org/abs/1809.06683](https://arxiv.org/abs/1809.06683)
56
+ - **Point of Contact:** [Leon Derczynski](https://github.com/leondz)
57
+ - **Size of downloaded dataset files:**
58
+ - **Size of the generated dataset:**
59
+ - **Total amount of disk used:**
60
+
61
+ ### Dataset Summary
62
+
63
+ Stance prediction task in English. The goal is to predict whether a given reply to a claim either supports, denies, questions, or simply comments on the claim. Ran as a SemEval task in 2019.
64
+
65
+ ### Supported Tasks and Leaderboards
66
+
67
+ * SemEval 2019 task 1
68
+
69
+ ### Languages
70
+
71
+ English of various origins, bcp47: `en`
72
+
73
+ ## Dataset Structure
74
+
75
+ ### Data Instances
76
+
77
+ #### polstance
78
+
79
+ An example of 'train' looks as follows.
80
+
81
+ ```
82
+ {
83
+ 'id': '0',
84
+ 'source_text': 'Appalled by the attack on Charlie Hebdo in Paris, 10 - probably journalists - now confirmed dead. An attack on free speech everywhere.',
85
+ 'reply_text': '@m33ryg @tnewtondunn @mehdirhasan Of course it is free speech, that\'s the definition of "free speech" to openly make comments or draw a pic!',
86
+ 'label': 3
87
+ }
88
+ ```
89
+
90
+
91
+ ### Data Fields
92
+
93
+ - `id`: a `string` feature.
94
+ - `source_text`: a `string` expressing a claim/topic.
95
+ - `reply_text`: a `string` to be classified for its stance to the source.
96
+ - `label`: a class label representing the stance the text expresses towards the target. Full tagset with indices:
97
+
98
+ ```
99
+ 0: "support",
100
+ 1: "deny",
101
+ 2: "query",
102
+ 3: "comment"
103
+ ```
104
+ - `quoteID`: a `string` of the internal quote ID.
105
+ - `party`: a `string` describing the party affiliation of the quote utterer at the time of utterance.
106
+ - `politician`: a `string` naming the politician who uttered the quote.
107
+
108
+ ### Data Splits
109
+
110
+ | name |instances|
111
+ |---------|----:|
112
+ |train|7 005|
113
+ |dev|2 425|
114
+ |test|2 945|
115
+
116
+ ## Dataset Creation
117
+
118
+ ### Curation Rationale
119
+
120
+
121
+ ### Source Data
122
+
123
+ #### Initial Data Collection and Normalization
124
+
125
+
126
+ #### Who are the source language producers?
127
+
128
+ Twitter users
129
+
130
+ ### Annotations
131
+
132
+ #### Annotation process
133
+
134
+ Detailed in [Analysing How People Orient to and Spread Rumours in Social Media by Looking at Conversational Threads](https://journals.plos.org/plosone/article/authors?id=10.1371/journal.pone.0150989)
135
+
136
+ #### Who are the annotators?
137
+
138
+
139
+ ### Personal and Sensitive Information
140
+
141
+
142
+ ## Considerations for Using the Data
143
+
144
+ ### Social Impact of Dataset
145
+
146
+
147
+ ### Discussion of Biases
148
+
149
+
150
+ ### Other Known Limitations
151
+
152
+ ## Additional Information
153
+
154
+ ### Dataset Curators
155
+
156
+ The dataset is curated by the paper's authors.
157
+
158
+ ### Licensing Information
159
+
160
+ The authors distribute this data under Creative Commons attribution license, CC-BY 4.0.
161
+
162
+ ### Citation Information
163
+
164
+ ```
165
+ @inproceedings{gorrell-etal-2019-semeval,
166
+ title = "{S}em{E}val-2019 Task 7: {R}umour{E}val, Determining Rumour Veracity and Support for Rumours",
167
+ author = "Gorrell, Genevieve and
168
+ Kochkina, Elena and
169
+ Liakata, Maria and
170
+ Aker, Ahmet and
171
+ Zubiaga, Arkaitz and
172
+ Bontcheva, Kalina and
173
+ Derczynski, Leon",
174
+ booktitle = "Proceedings of the 13th International Workshop on Semantic Evaluation",
175
+ month = jun,
176
+ year = "2019",
177
+ address = "Minneapolis, Minnesota, USA",
178
+ publisher = "Association for Computational Linguistics",
179
+ url = "https://aclanthology.org/S19-2147",
180
+ doi = "10.18653/v1/S19-2147",
181
+ pages = "845--854",
182
+ }
183
+ ```
184
+
185
+
186
+ ### Contributions
187
+
188
+ Author-added dataset [@leondz](https://github.com/leondz)
rumoureval_2019.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
2
  #
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
  # you may not use this file except in compliance with the License.
@@ -12,7 +12,7 @@
12
  # See the License for the specific language governing permissions and
13
  # limitations under the License.
14
  # TODO: Address all TODOs and remove all explanatory comments
15
- """TODO: Add a description here."""
16
 
17
 
18
  import csv
@@ -25,25 +25,39 @@ import datasets
25
  # TODO: Add BibTeX citation
26
  # Find for instance the citation on arxiv or on the dataset repo/website
27
  _CITATION = """\
28
- @InProceedings{huggingface:dataset,
29
- title = {A great new dataset},
30
- author={huggingface, Inc.
31
- },
32
- year={2020}
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
 
34
  """
35
 
36
  # TODO: Add description of the dataset here
37
  # You can copy an official description
38
  _DESCRIPTION = """\
39
- This new dataset is designed to solve this great NLP task and is crafted with a lot of care.
 
40
  """
41
 
42
  # TODO: Add a link to an official homepage for the dataset here
43
  _HOMEPAGE = ""
44
 
45
  # TODO: Add the licence for the dataset here if you can find it
46
- _LICENSE = ""
47
 
48
  class RumourEval2019Config(datasets.BuilderConfig):
49
 
@@ -68,8 +82,8 @@ class RumourEval2019(datasets.GeneratorBasedBuilder):
68
  "label": datasets.features.ClassLabel(
69
  names=[
70
  "support",
71
- "query",
72
  "deny",
 
73
  "comment"
74
  ]
75
  )
1
+ # Copyright 2022 Mads Kongsbak and Leon Derczynski
2
  #
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
  # you may not use this file except in compliance with the License.
12
  # See the License for the specific language governing permissions and
13
  # limitations under the License.
14
  # TODO: Address all TODOs and remove all explanatory comments
15
+ """RumourEval 2019: Stance Prediction"""
16
 
17
 
18
  import csv
25
  # TODO: Add BibTeX citation
26
  # Find for instance the citation on arxiv or on the dataset repo/website
27
  _CITATION = """\
28
+ @inproceedings{gorrell-etal-2019-semeval,
29
+ title = "{S}em{E}val-2019 Task 7: {R}umour{E}val, Determining Rumour Veracity and Support for Rumours",
30
+ author = "Gorrell, Genevieve and
31
+ Kochkina, Elena and
32
+ Liakata, Maria and
33
+ Aker, Ahmet and
34
+ Zubiaga, Arkaitz and
35
+ Bontcheva, Kalina and
36
+ Derczynski, Leon",
37
+ booktitle = "Proceedings of the 13th International Workshop on Semantic Evaluation",
38
+ month = jun,
39
+ year = "2019",
40
+ address = "Minneapolis, Minnesota, USA",
41
+ publisher = "Association for Computational Linguistics",
42
+ url = "https://aclanthology.org/S19-2147",
43
+ doi = "10.18653/v1/S19-2147",
44
+ pages = "845--854",
45
  }
46
+
47
  """
48
 
49
  # TODO: Add description of the dataset here
50
  # You can copy an official description
51
  _DESCRIPTION = """\
52
+
53
+ Stance prediction task in English. The goal is to predict whether a given reply to a claim either supports, denies, questions, or simply comments on the claim. Ran as a SemEval task in 2019.
54
  """
55
 
56
  # TODO: Add a link to an official homepage for the dataset here
57
  _HOMEPAGE = ""
58
 
59
  # TODO: Add the licence for the dataset here if you can find it
60
+ _LICENSE = "cc-by-4.0"
61
 
62
  class RumourEval2019Config(datasets.BuilderConfig):
63
 
82
  "label": datasets.features.ClassLabel(
83
  names=[
84
  "support",
 
85
  "deny",
86
+ "query",
87
  "comment"
88
  ]
89
  )