├── .github └── FUNDING.yml ├── LICENSE ├── ML_model.py ├── README.md ├── bert_model_sen.py ├── calc_AUC.py ├── cnn_model_sen.py ├── construct.py ├── construct_test.py ├── construct_train.py ├── data ├── right.csv ├── submit_example.csv ├── test.feature.csv └── train.news.csv ├── lstm_model.py ├── requirements.txt └── web.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /ML_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/ML_model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/README.md -------------------------------------------------------------------------------- /bert_model_sen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/bert_model_sen.py -------------------------------------------------------------------------------- /calc_AUC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/calc_AUC.py -------------------------------------------------------------------------------- /cnn_model_sen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/cnn_model_sen.py -------------------------------------------------------------------------------- /construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/construct.py -------------------------------------------------------------------------------- /construct_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/construct_test.py -------------------------------------------------------------------------------- /construct_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/construct_train.py -------------------------------------------------------------------------------- /data/right.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/data/right.csv -------------------------------------------------------------------------------- /data/submit_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/data/submit_example.csv -------------------------------------------------------------------------------- /data/test.feature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/data/test.feature.csv -------------------------------------------------------------------------------- /data/train.news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/data/train.news.csv -------------------------------------------------------------------------------- /lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/lstm_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazy-forever/Fake-news-detection/HEAD/web.py --------------------------------------------------------------------------------