• Stars
    star
    113
  • Rank 310,115 (Top 7 %)
  • Language
    Jupyter Notebook
  • License
    GNU Affero Genera...
  • Created about 7 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Bias detection in the news. Back and front end for areyoufakenews.com

Fake News Detector

In an era increasingly defined by the proliferation of misinformation and polarized politics, it's important for internet users to have context for what's on their screen. This microservice uses natural language processing and deep learning to analyze patterns of bias on any news website in real time. Each time a url is submitted, dozens of the most recent articles are collected and analyzed for a variety of factors, from political bias to journalistic accuracy.

Microservice Architecture [WIP]

Each of the directories in the ./Docker/ folder will contain the ingredients for a microservice. These services work together to form the app. Microservices in this app are comprised of serveral elements which make for a stable and well-defined function unit of code.

Docker/
    example_microservice/

        README.MD - High level overview
            Purpose
                Explain functionality
            Connections
                What services does this connect to, how, and why
            API Definition
                Outline service agreement + protocol

        Unit tests - Formally test the API Definition

        Dockerfile
            Lightweight officially supported image
            Specified version numbers of libraries

        Source Code
            Design
                Efficient, flexible, lightweight
            Quality
                Organized, commented, formatted.



Front end services

These microservices comprise the production website for serving predicitons to the user.

Control Flow

This is the controller of logic for the production website. It directs the backend execution of web requests initiated by user activity.

Web

The web interface. Uses flask, gninx, gunicorn to host the dynamic and static pages.

Web scraper

Several small functions for gathering text and metadata from news sites. Includes a domain spiderer to inventory article urls on a site, and map/reduce scraper pattern for asyncronous web scraping of the article urls.

Plotter

Matplotlib and code for generating plots given prediction data.

Predict

Lightweight tensorflow/keras NLP container for generating predictions from text.


Data Persistence


Mongo

Contains a mongoDB image with a few custom queries. Serves as the central source of state on the site.


Model Training


These services are used to collect data from labelled sources for training the convolutional neural net. The resulting model files are then used in the production site.

Gather Data

Downloads articles from websites into a common format. Articles are stored in MongoDB.

Train

Trains model using collected data and generates neural network weights, word vectors.


Site Background

Data Collection


OpenSources maintains a downloadable database of news sites with tags related to journalistic accuracy.

Media Bias Fact Check maintains an online directory of news sites, categorized by the political bias and accuracy.

Using a customized fork of the excellent Newspaper library this project spiders ~3000 labelled websites for new articles to and stores them by their bias tag in MongoDB. Article texts are minmally preprocessed with unicode cleaning.

Modeling


Using the collected data, a TFIDF vector is fitted on the article collection. A custom-built convolutional neural network is trained in a multi-label classification scheme using a binary crossentropy loss fucntion with a sigmoid output layer. Th model is deployed to AWS Lambda.

Deployment


The website is published via Flask. After a user enters a news site URL, the webserver scans the site for the most 150 recent articles and gathers their URLS. Asynchronously, the text in each url is downloaded using AWS Lambda. The article text is then sent to another AWS Lambda function with the trained neural network model. Results are plotted via matplotlib and rendered in the webpage.

Deeper


For a much more detailed discussion of the project please see this living presentation on google slides: https://docs.google.com/presentation/d/1wwnTx0hKB2MJXGPBHbAzElQnCPKH4UFicfnrzsxQG2g/edit?usp=sharing

Open Source

This is GNU GPL licensed, so anyone can use it as long as it remains open source. Anyone who is interested in contributing is welcome to head over to the Data For Democracy repo, where issues are being tracked. https://github.com/Data4Democracy/are-you-fake-news

Contact

aracel.io

More Repositories

1

Face2Vec

Fast and accurate face recognition combining CV and DNNs
Python
27
star
2

Reddit_Persona

A Python module to extract personality insights, sentiment & keywords from reddit accounts. pip install reddit_persona
Python
25
star
3

pandas_cache

Python
7
star
4

RPiViz

IoT Drowsiness detection using computer vision
Python
5
star
5

RPi3_Tensor_Emotive

IOT Emotion recognition for focus vs tiredness, usingTensorFlow on Raspberry Pi 3
3
star
6

Arduino-Serial-Graph-MPL

Tools for plotting accelerometer data in real time: ino file for MPU 6050 6 DOF IMU, python script for real time graphing of accel vals, python script for real-time serial connection
Arduino
3
star
7

squeezenet_transfer_learning

Library for transfer learning in keras using svm and arbitrary aspect ratios
Python
2
star
8

EZscan

Simple python command to map ip, ports, vendor, and OS of devices on your network
Python
2
star
9

pi-zero-dns-filter

Local network Malware / Adblock DNS proxy with easy wifi hotspot setup. Runs docker in a Raspberry Pi Zero, with bash scripting and a local web server for easy network config.
HTML
2
star
10

ovpn-speed-connect

Python Library to update ovpn files, ping & connect to fastest server.
Python
2
star
11

Demographics-Prejudice-Status

Jupyter notebook powered data analysis of social science data hosted on mybinder.org
Jupyter Notebook
1
star
12

dnn-spam-filter

Gmail API and Keras neural net for spam classification
HTML
1
star
13

ArcPy-GIS-Iterator

Iterate through data subsets to produce production-ready MXDs with one to many labelling schema
Python
1
star
14

que_es

Quick and convenient Python object inspection
Python
1
star
15

GoogleMusicFavs

Jupyter Notebook plots your most listened to Genres, Artists, and Tracks in 20 lines of code!
Jupyter Notebook
1
star