├── .gitignore ├── LICENSE ├── README.md ├── data_cleaning ├── csv_transform.py ├── data_cleaning.ipynb └── get_articles.py ├── data_scraper ├── ParallelScraper.py └── scraper.py ├── environment.yaml ├── fakenews_finalpaper.pdf └── pipeline ├── README.md ├── model.py ├── model_loop.py ├── pipeline_testing.ipynb ├── run.py ├── run_both.sh ├── run_grammar.sh └── transform_features.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/README.md -------------------------------------------------------------------------------- /data_cleaning/csv_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/data_cleaning/csv_transform.py -------------------------------------------------------------------------------- /data_cleaning/data_cleaning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/data_cleaning/data_cleaning.ipynb -------------------------------------------------------------------------------- /data_cleaning/get_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/data_cleaning/get_articles.py -------------------------------------------------------------------------------- /data_scraper/ParallelScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/data_scraper/ParallelScraper.py -------------------------------------------------------------------------------- /data_scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/data_scraper/scraper.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/environment.yaml -------------------------------------------------------------------------------- /fakenews_finalpaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/fakenews_finalpaper.pdf -------------------------------------------------------------------------------- /pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/README.md -------------------------------------------------------------------------------- /pipeline/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/model.py -------------------------------------------------------------------------------- /pipeline/model_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/model_loop.py -------------------------------------------------------------------------------- /pipeline/pipeline_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/pipeline_testing.ipynb -------------------------------------------------------------------------------- /pipeline/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/run.py -------------------------------------------------------------------------------- /pipeline/run_both.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/run_both.sh -------------------------------------------------------------------------------- /pipeline/run_grammar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/run_grammar.sh -------------------------------------------------------------------------------- /pipeline/transform_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldengolab/fake-news-detection/HEAD/pipeline/transform_features.py --------------------------------------------------------------------------------