├── .gitignore ├── README.md ├── data ├── get_IDS.py ├── scrape_channel.py ├── scrape_social.py └── scrape_video.py ├── dataset ├── data.csv └── data_final.csv ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png ├── model ├── model_grid.py ├── predict.py └── train_model.py ├── notebook ├── .ipynb_checkpoints │ ├── DataProcessing-checkpoint.ipynb │ └── FeatureEngineering-checkpoint.ipynb ├── DataProcessing.ipynb └── FeatureEngineering.ipynb ├── report.pdf └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/README.md -------------------------------------------------------------------------------- /data/get_IDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/data/get_IDS.py -------------------------------------------------------------------------------- /data/scrape_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/data/scrape_channel.py -------------------------------------------------------------------------------- /data/scrape_social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/data/scrape_social.py -------------------------------------------------------------------------------- /data/scrape_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/data/scrape_video.py -------------------------------------------------------------------------------- /dataset/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/dataset/data.csv -------------------------------------------------------------------------------- /dataset/data_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/dataset/data_final.csv -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/5.png -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/6.png -------------------------------------------------------------------------------- /images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/7.png -------------------------------------------------------------------------------- /images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/images/8.png -------------------------------------------------------------------------------- /model/model_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/model/model_grid.py -------------------------------------------------------------------------------- /model/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/model/predict.py -------------------------------------------------------------------------------- /model/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/model/train_model.py -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/DataProcessing-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/notebook/.ipynb_checkpoints/DataProcessing-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/.ipynb_checkpoints/FeatureEngineering-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/notebook/.ipynb_checkpoints/FeatureEngineering-checkpoint.ipynb -------------------------------------------------------------------------------- /notebook/DataProcessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/notebook/DataProcessing.ipynb -------------------------------------------------------------------------------- /notebook/FeatureEngineering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/notebook/FeatureEngineering.ipynb -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/report.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayush1997/YouTube-Like-predictor/HEAD/requirements.txt --------------------------------------------------------------------------------