Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
ttseriotou commited on
Commit
5ef1957
·
verified ·
1 Parent(s): ecf2a46

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -1
README.md CHANGED
@@ -7,4 +7,78 @@ language:
7
  pretty_name: lrs_17
8
  size_categories:
9
  - 1K<n<10K
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pretty_name: lrs_17
8
  size_categories:
9
  - 1K<n<10K
10
+ ---
11
+
12
+ ## Dataset Details
13
+
14
+ The Longitudinal Rumour Stance (LRS) is a longitudinal version of the RumourEval-2017 dataset. It consists of Twitter conversations around
15
+ newsworthy events. The source tweet of the conversation conveys a *rumourous* claim, discussed by tweets in the stream. In 325 conversations, a total of 5,568
16
+ posts are labelled based on their stance towards the rumourous claim in the corresponding source tweet as either Supporting, Denying, Questioning or Commenting.
17
+ We convert conversation structure and labels into a Longitudinal Stance Switch Detection task.
18
+
19
+ Specifically, conversations are converted from tree-structured into linear timelines to obtain chronologically ordered
20
+ lists. Then the original stance labels from the RumourEval-2017 dataset are converted into a binary label of *Switch* and *No Switch* categories based on the
21
+ numbers of supporting tweets versus denying and questioning ones at each point in time.
22
+
23
+ More precisely this longitudinal task captures switches in overall user stance:
24
+ - Switch: switch between the total number of oppositions (query/deny) and supports or vv
25
+ - No Switch: absence of a switch or balance between the numbers of supporting and opposing posts
26
+
27
+
28
+ ## Dataset Structure
29
+
30
+ ```id```: a type ```float64``` unique id for each tweet
31
+
32
+ ```timeline_id```: a ```string``` type unique id for each timeline. A timeline is a linear chronologically ordered conversation converted from the tree-structured conversation.
33
+
34
+ ```datetime```: date and time of the tweet
35
+
36
+ ```text```: a ```string``` type text of the tweet
37
+
38
+ ```label_binary```: a type ```float64``` binary label of either *Switch* (1) or *No Switch* (0)
39
+
40
+ ```label```: a type ```float64``` binary label of either *No Switch* (0), a switch in stance from supporting to opposing the claim starts (-1), a switch in stance from opposing to supporting the claim starts (1), a switch in stance from supporting to opposing the claim continues (-2), a switch in stance from opposing to supporting the claim continues (2).
41
+
42
+
43
+ ### Data Splits
44
+
45
+ Each split has unique timelines.
46
+
47
+ | set | samples | timelines |
48
+ | -------- | ------- |------- |
49
+ | train | 4,238 | 272|
50
+ | dev | 281 | 25|
51
+ | test | 1,049 | 28|
52
+
53
+ ## Licensing Information
54
+
55
+ The authors distribute this data under Creative Commons attribution license, CC-BY 4.0.
56
+
57
+ ## Models
58
+
59
+ Code for a number of models ran on this dataset can be found at the Git Repository of the [Sig-Networks Demo Paper](https://github.com/ttseriotou/sig-networks/tree/main)
60
+
61
+
62
+ ## Citation Information
63
+
64
+ ```
65
+ @article{tseriotou2023sig,
66
+ title={Sig-networks toolkit: Signature networks for longitudinal language modelling},
67
+ author={Tseriotou, Talia and Chan, Ryan Sze-Yin and Tsakalidis, Adam and Bilal, Iman Munire and Kochkina, Elena and Lyons, Terry and Liakata, Maria},
68
+ journal={arXiv preprint arXiv:2312.03523},
69
+ year={2023}
70
+ }
71
+ ```
72
+
73
+ ```
74
+ @article{derczynski2017semeval,
75
+ title={SemEval-2017 Task 8: RumourEval: Determining rumour veracity and support for rumours},
76
+ author={Derczynski, Leon and Bontcheva, Kalina and Liakata, Maria and Procter, Rob and Hoi, Geraldine Wong Sak and Zubiaga, Arkaitz},
77
+ journal={arXiv preprint arXiv:1704.05972},
78
+ year={2017}
79
+ }
80
+ ```
81
+
82
+ ## Acknowledgement
83
+
84
+ This dataset was curated by [Iman Munire Bilal](https://scholar.google.com/citations?user=FdlogdUAAAAJ&hl=en)