Skip to content

A proof-of-concept for a tool that tracks the spread of sentiments and rumors through social networks

License

Notifications You must be signed in to change notification settings

simon-andrews/soper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Soper header

Soper

Soper is a proof-of-concept of a tool for tracking the spread of sentiments and rumors through social networks. It works by detecting changes in the sentiments of the posts of your friends. The more dramatically your friends' views shift over time, the more suspicious you are to Soper.

Soper was heavily inspired by a talk from Maggie Makar.

Soper is named for George Soper, who discovered Mary Mallon ("Typhoid Mary") as the first asymptomatic carrier of typhoid fever in the United States. It was created in 24 hours for HackHolyoke 2018.

Terminology

I kinda just sort of made up my own words for stuff as I went along. Let's go through them!

  • Person: one member of the social network: Has three properties:
    • Hostility: how the person feels about Elbonians, with -1 being the most negative and 1 being the most positive.
    • Gullibility: likelihood of letting a post they see on the internet affect their hostility from 0 to 1 with 0 being no chance at all and 1 being complete faith in everything.
    • Activity level: the probability a person will make a post on a given day.
  • Friend group: a group of people that all know each other, probably because they have some shared common interest (school, work, hobby, etc.).
  • Social network: a group of people, formed by merging a few friend groups and adding some connections randomly between them.
  • Agitator: a member of a social network that's very dedicated to spreading some specific message (the idea is that they're some sort of paid troll).

How it works

Soper analyzes the rate of change of the sentiments of each person's friends. Specifically, it generates a least-squares regression for each friend's post sentiment vs. time, then computes the mean regression slope for all of a person's friends. People with unusually negative slopes are more likely to be agitators, because they bombard their friends with propaganda.

The scenario for the simulation this repository is a massive influx of Elbonian refugees, and a single agitator dedicated to spreading anti-Elbonian sentiment.

Technology

I started working on this project by experimenting in Jupyter notebooks, then moved to just working with regular source code files once I got a decent thing going.

Soper is written in Python 3 and uses:

  • NLTK for natural language processing.
  • NetworkX for network modeling.
  • Numpy for miscellaneous math stuff.
  • Matplotlib for plotting pretty graphs.

For sentiment analysis, Soper uses VADER, a sentiment analyzer tuned specifically for social media posts.

Image attributions

About

A proof-of-concept for a tool that tracks the spread of sentiments and rumors through social networks

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages