All Projects → nguyenvo09 → Fake_news_detection_deep_learning

nguyenvo09 / Fake_news_detection_deep_learning

Licence: mit
Fake News Detection using Deep Learning models in Tensorflow

Projects that are alternatives of or similar to Fake news detection deep learning

Keras Attention
Visualizing RNNs using the attention mechanism
Stars: ✭ 697 (+841.89%)
Mutual labels:  deep-neural-networks, attention-mechanism
Sarcasm Detection
Detecting Sarcasm on Twitter using both traditonal machine learning and deep learning techniques.
Stars: ✭ 73 (-1.35%)
Mutual labels:  deep-neural-networks, attention-mechanism
Pytorch Attention Guided Cyclegan
Pytorch implementation of Unsupervised Attention-guided Image-to-Image Translation.
Stars: ✭ 67 (-9.46%)
Mutual labels:  deep-neural-networks, attention-mechanism
Hnatt
Train and visualize Hierarchical Attention Networks
Stars: ✭ 192 (+159.46%)
Mutual labels:  deep-neural-networks, attention-mechanism
Attention is all you need
Transformer of "Attention Is All You Need" (Vaswani et al. 2017) by Chainer.
Stars: ✭ 303 (+309.46%)
Mutual labels:  deep-neural-networks, attention-mechanism
Sparse Structured Attention
Sparse and structured neural attention mechanisms
Stars: ✭ 198 (+167.57%)
Mutual labels:  deep-neural-networks, attention-mechanism
Adnet
Attention-guided CNN for image denoising(Neural Networks,2020)
Stars: ✭ 135 (+82.43%)
Mutual labels:  deep-neural-networks, attention-mechanism
Action Recognition Visual Attention
Action recognition using soft attention based deep recurrent neural networks
Stars: ✭ 350 (+372.97%)
Mutual labels:  deep-neural-networks, attention-mechanism
Sockeye
Sequence-to-sequence framework with a focus on Neural Machine Translation based on Apache MXNet
Stars: ✭ 990 (+1237.84%)
Mutual labels:  deep-neural-networks, attention-mechanism
Bitcoin Price Prediction Using Lstm
Bitcoin price Prediction ( Time Series ) using LSTM Recurrent neural network
Stars: ✭ 67 (-9.46%)
Mutual labels:  deep-neural-networks
Group Level Emotion Recognition
Model submitted for the ICMI 2018 EmotiW Group-Level Emotion Recognition Challenge
Stars: ✭ 70 (-5.41%)
Mutual labels:  attention-mechanism
Train Ai With Django Swagger Jwt
Train AI (Keras + Tensorflow) to defend apps with Django REST Framework + Celery + Swagger + JWT - deploys to Kubernetes and OpenShift Container Platform
Stars: ✭ 66 (-10.81%)
Mutual labels:  deep-neural-networks
Pytorch Filterresponsenormalizationlayer
PyTorch implementation of "Filter Response Normalization Layer: Eliminating Batch Dependence in the Training of Deep Neural Networks"
Stars: ✭ 68 (-8.11%)
Mutual labels:  deep-neural-networks
Cs231n
My Solution to Assignments of CS231n in Winter2016
Stars: ✭ 71 (-4.05%)
Mutual labels:  deep-neural-networks
Se3 Transformer Pytorch
Implementation of SE3-Transformers for Equivariant Self-Attention, in Pytorch. This specific repository is geared towards integration with eventual Alphafold2 replication.
Stars: ✭ 73 (-1.35%)
Mutual labels:  attention-mechanism
Deep demosaick
Iterative Residual Network for Deep Joint Image Demosaicking and Denoising
Stars: ✭ 66 (-10.81%)
Mutual labels:  deep-neural-networks
Irm Based Speech Enhancement Using Lstm
Ideal Ratio Mask (IRM) Estimation based Speech Enhancement using LSTM
Stars: ✭ 66 (-10.81%)
Mutual labels:  deep-neural-networks
Rnn Trajmodel
The source of the IJCAI2017 paper "Modeling Trajectory with Recurrent Neural Networks"
Stars: ✭ 72 (-2.7%)
Mutual labels:  deep-neural-networks
Blinkdl
A minimalist deep learning library in Javascript using WebGL + asm.js. Run convolutional neural network in your browser.
Stars: ✭ 69 (-6.76%)
Mutual labels:  deep-neural-networks
Deeplearning4j
All DeepLearning4j projects go here.
Stars: ✭ 68 (-8.11%)
Mutual labels:  deep-neural-networks

Fake News Detection With Deep Learning

This repository is for Fake News Detection using Deep Learning models

Motivation

Fake news is widely spread across social network. Therefore, there is a huge demand to debunk fake news. There are many attempts to detect fake news but limited work is about using Deep Learning models. In this project, we aim to build state-of-the-art deep learning models to detect fake news based on the content of article itself. alt text

Dataset

We get the ground truth data from https://www.kaggle.com/arminehn/rumor-citation/data#. We only use Snopes URLs since the labels of each news were clearly presented. Only "true" or "false" labels were kept. We randomly select 281 true news and 281 false news and crawl the Snope website for additional content.

Phases of the project

  • Building machine learning models to detect fake news
  • Using multiple data sources to detect fake news.

Current progress

We already built many traditional machine learning models as baselines. We also already implemented a deep learning model called Bi-directional GRU with Attention mechanism which was originally proposed by Yang el al., [1]. We implemented this model for fake news detection domain. Some visualizations of attention weights learned by this model is shown in https://github.com/nguyenvo09/fake_news_detection_deep_learning/blob/master/biGRU_attention.ipynb (Note: Github does not show the CSS of our visualizations. It is better to view visualizations in your local machines). We also use the Attention layer code implemented by @ilivans. Thanks. We implement all Deep Learning models in Tensorflow 1.4

alt text and alt text

Future work

  • Trying other deep learning models such as Auto-Encoders, GAN, CNN

References

[1] Hierarchical Attention Networks for Document Classification, Zichao Yang, Diyi Yang, Chris Dyer, Xiaodong He, Alex Smola, Eduard Hovy, 2016 NAACL

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].