├── .azureml ├── config.json └── pytorch-env.yml ├── LICENSE ├── README.md ├── data ├── 05-upload-data.py ├── newdatasetwithcoviddata.csv ├── shorttextpreprocessedtest.csv └── shorttextpreprocessedtrain.csv ├── notebooks ├── data preparation.ipynb └── train.ipynb ├── requirements.txt ├── run-training-script.py └── src ├── Dockerfile ├── deploy.py ├── echo_score.py ├── messages.json ├── predict.py ├── receiver.py └── train.py /.azureml/config.json: -------------------------------------------------------------------------------- 1 | This file can be downloaded for your Azure instance easily. -------------------------------------------------------------------------------- /.azureml/pytorch-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/.azureml/pytorch-env.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/README.md -------------------------------------------------------------------------------- /data/05-upload-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/data/05-upload-data.py -------------------------------------------------------------------------------- /data/newdatasetwithcoviddata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/data/newdatasetwithcoviddata.csv -------------------------------------------------------------------------------- /data/shorttextpreprocessedtest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/data/shorttextpreprocessedtest.csv -------------------------------------------------------------------------------- /data/shorttextpreprocessedtrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/data/shorttextpreprocessedtrain.csv -------------------------------------------------------------------------------- /notebooks/data preparation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/notebooks/data preparation.ipynb -------------------------------------------------------------------------------- /notebooks/train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/notebooks/train.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/requirements.txt -------------------------------------------------------------------------------- /run-training-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/run-training-script.py -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/deploy.py -------------------------------------------------------------------------------- /src/echo_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/echo_score.py -------------------------------------------------------------------------------- /src/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/messages.json -------------------------------------------------------------------------------- /src/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/predict.py -------------------------------------------------------------------------------- /src/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/receiver.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prathameshmahankal/Fake-News-Detection-Using-BERT/HEAD/src/train.py --------------------------------------------------------------------------------