Datasets:

ArXiv:
Tags:
License:
ahelk commited on
Commit
e30ec28
β€’
1 Parent(s): ccf4430

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md CHANGED
@@ -1,3 +1,62 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+ # Learning Stance Embeddings from Signed Social Graphs
5
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg?style=flat-square)](http://makeapullrequest.com)
6
+ [![arXiv](https://img.shields.io/badge/arXiv-2201.11675-b31b1b.svg)](https://arxiv.org/abs/2201.11675)
7
+
8
+ This repo contains the datasets from our paper [Learning Stance Embeddings from Signed Social Graphs](https://arxiv.org/abs/2209.07562). <br />
9
+ [[PDF]](https://arxiv.org/pdf/2201.11675.pdf)
10
+ [[HuggingFace Datasets]](https://huggingface.co/Twitter)
11
+
12
+ <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
13
+
14
+ ## Overview
15
+ A key challenge in social network analysis is understanding the position, or stance, of people in the graph on a large set of topics. In such social graphs, modeling (dis)agreement patterns across a range of correlated topics may be beneficial. For example, disagreement on one topic may make disagreement (or agreement) more likely for related topics.
16
+
17
+ We open source **two Twitter signed, topical graph datasets**. One dataset, **TwitterSG**, labels (dis)agreements using engagements between users via tweets to derive topic-informed, signed edges. The other, **BirdwatchSG**,leverages community reports on misinformation and misleading content.
18
+
19
+ ## Datasets
20
+
21
+ ### TwitterSG
22
+
23
+ Twitter Signed Graph, or TwitterSG, is a signed, directed, edge-attributed graph of users, drawn from Twitter interactions. TwitterSG contains 753,944 nodes (users), 200 topics and 12,848,093 edges. It is the largest publicly available user-to-user signed social graph (∼6x larger than the Epinions graph).
24
+
25
+ A positive edge exists from user 𝐴 to user 𝐡 if user 𝐴 liked a tweet posted by user 𝐡. A negative edge exists from user 𝐴 to user 𝐡 if user 𝐴 expressed opposition towards user 𝐡’s tweet, e.g., by replying *I disagree with you*. The topic of an edge from user 𝐴 to user 𝐡 is determined by the topic of user 𝐡’s tweet.
26
+
27
+ Tweets' topics were inferred with a topic classifier used in production by Twitter. The topics provided in the dataset are all related to sports (e.g., sports teams, players, managers, or events), and the tweets related to these interactions were published between 20th May (Ice Hockey World Championships) and 8th August 2021 (closing date of the 2020 Tokyo Olympic Games).
28
+
29
+ 9.6\% of edges are negative (opposition) and 90.4\% are positive. There may be several edges between two nodes (several interactions, several topics). The data format is displayed below.
30
+
31
+ | src_node | tgt_node | topic | sign |
32
+ | ------------- | ------------- | --------- | ---- |
33
+ | 1 | 6 | Copa America | +1 |
34
+ | 1 | 6 | NFL | -1 |
35
+ | 4 | 5 | Kylian Mbappe | +1 |
36
+
37
+ ### BirdwatchSG
38
+
39
+ Birdwatch Signed Graph, or BirdwatchSG, is a signed, directed, edge-attributed graph of users, drawn from note ratings on the Birdwatch pilot. The graph contains 2,987 nodes (users), 1,200 topics and 441,986 edges.
40
+
41
+ [Birdwatch pilot](https://blog.twitter.com/en_us/topics/product/2021/introducing-birdwatch-a-community-based-approach-to-misinformation) was launched by Twitter in January 2021 in the USA to address misleading information on the platform, in a community-driven fashion: the Birdwatch participants can identify information they believe is misleading in tweets and write notes that provide informative context. They can also rate the helpfulness (either *helpful*, *somewhat helpful*, or *not helpful*) of notes added by other contributors. All Birdwatch contributions are publicly available on the [Birdwatch site](https://twitter.github.io/birdwatch/) for anyone in the USA.
42
+
43
+ Using Birdwatch data from January to July 2021, a positive (negative) edge is created from participant π‘ˆ1 to π‘ˆ2 if participant π‘ˆ1 rated a note written by participant π‘ˆ2 as *helpful* (*not helpful*). The *somewhat helpful* ratings were filtered out. The topic associated with an edge is the topic inferred from the tweet the note refers to.
44
+
45
+ 36.9% of edges are negative (opposition) and 63.1% are positive. There may be several edges between two nodes (several interactions, several topics).
46
+
47
+ | src_node | tgt_node | topic | sign |
48
+ | ------------- | ------------- | --------- | ---- |
49
+ | 10 | 6 | US Politics | +1 |
50
+ | 7 | 14 | Ted Cruz | -1 |
51
+ | 1 | 11 | COVID-19 | +1 |
52
+
53
+ ## Citation
54
+ If you use our datasets in your work, please cite, please cite the following:
55
+ ```bib
56
+ @article{pougue2022learning,
57
+ title={Learning Stance Embeddings from Signed Social Graphs},
58
+ author={Pougu{\'e}-Biyong, John and Gupta, Akshay and Haghighi, Aria and El-Kishky, Ahmed},
59
+ journal={arXiv preprint arXiv:2201.11675},
60
+ year={2022}
61
+ }
62
+ ```