├── .streamlit └── config.toml ├── 1.Inital_Data_Exploration (Notebook One).ipynb ├── 2.Text_EDA_&_PreProcessing (Notebook Two).ipynb ├── 3.Model Implementation and Evaluation (Notebook Three).ipynb ├── 4.Deployment.py ├── README.md ├── data and pickle files ├── amazon_reviews_2019.csv ├── best_model.pkl ├── cleaned_data.csv ├── count_vectorizer.pkl └── updated_data.csv └── requirements.txt /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /1.Inital_Data_Exploration (Notebook One).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/1.Inital_Data_Exploration (Notebook One).ipynb -------------------------------------------------------------------------------- /2.Text_EDA_&_PreProcessing (Notebook Two).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/2.Text_EDA_&_PreProcessing (Notebook Two).ipynb -------------------------------------------------------------------------------- /3.Model Implementation and Evaluation (Notebook Three).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/3.Model Implementation and Evaluation (Notebook Three).ipynb -------------------------------------------------------------------------------- /4.Deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/4.Deployment.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/README.md -------------------------------------------------------------------------------- /data and pickle files/amazon_reviews_2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/data and pickle files/amazon_reviews_2019.csv -------------------------------------------------------------------------------- /data and pickle files/best_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/data and pickle files/best_model.pkl -------------------------------------------------------------------------------- /data and pickle files/cleaned_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/data and pickle files/cleaned_data.csv -------------------------------------------------------------------------------- /data and pickle files/count_vectorizer.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/data and pickle files/count_vectorizer.pkl -------------------------------------------------------------------------------- /data and pickle files/updated_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/data and pickle files/updated_data.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kntb0107/fake_review_detector/HEAD/requirements.txt --------------------------------------------------------------------------------