├── .gitignore ├── 01-Rock-vs-Mine-Prediction └── Rock_vs_Mine_Prediction.ipynb ├── 02-Diabetes-Prediction └── Diabetes_Prediction.ipynb ├── 03-House-Price-Prediction └── House_Price_Prediction.ipynb ├── 04-Fake-News-Prediction └── Fake_News_Prediction.ipynb ├── 05-Loan-Status-Prediction └── Loan_Status_Prediction.ipynb ├── 06-Wine-Quality-Prediction └── Wine_Quality_Prediction.ipynb ├── 07-Car-Price-Prediction └── Car_Price_Prediction.ipynb ├── 08-Gold-Price-Prediction └── Gold_Price_Prediction.ipynb ├── 09-Heart-Disease-Detection └── Heart_Disease_Detection.ipynb ├── 10-DL-Handwritten-Digit-Recognition └── Handwritten_Digit_Recognition.ipynb ├── 11-Soft-Drinks-Sales-Market-Analysis-and-Prediction └── Soft_drinks_Sales_Market_Analysis_and_Prediction_final.ipynb ├── 12-Credit-Card-Fraud-Detection └── Credit_Card_Fraud_Detection.ipynb ├── 13-Customer-Segmentation └── Customer_Segmentation.ipynb ├── 14-Medical-Insurance-Cost-Prediction └── Medical_Insurance_Cost_Prediction.ipynb ├── 15-Big-Mart-Sales-Prediction └── Supermarket_Sales_Prediction.ipynb ├── 16-Parkinsons-Disease-Detection └── Parkinsons_Disease_Detection.ipynb ├── 17-Titanic-Survival-Prediction ├── Data │ └── train.csv └── Titanic_Survival_Prediction.ipynb ├── 18-Movie-Recommendation-System └── Movie_Recommendation_System.ipynb ├── 19-Movie-Recommendation-System-V2 └── Movie_Recommendation_System_V2.ipynb ├── 20-DL-Breast-Cancer-Classification └── Breast_Cancer_Classification_with_NN.ipynb ├── 21-DL-Time-Series-Temperature-Forecasting ├── Time_Series_Temperature_Forcasting.ipynb └── model │ ├── fingerprint.pb │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ ├── variables.data-00000-of-00001 │ └── variables.index ├── 22-DL-Multivariate-Time-Series-Weather-Forecasting ├── Multivariate_Time_Series_Weather_Forecasting.ipynb ├── model_CNN │ ├── fingerprint.pb │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ └── variables.index ├── model_GRU │ ├── fingerprint.pb │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ └── variables.index └── model_lstm │ ├── fingerprint.pb │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ ├── variables.data-00000-of-00001 │ └── variables.index ├── 23-DL-Face-Mask-Detection └── Face_Mask_Detection.ipynb ├── LICENSE ├── README.md ├── assets ├── cover │ ├── cover.jpg │ ├── cover_2.png │ ├── cover_3.png │ ├── cover_4.png │ ├── cover_5.png │ ├── cover_6.png │ ├── cover_7.png │ └── cover_8.png └── icons │ ├── keras.png │ ├── matplotlibbg.png │ ├── nltk.png │ ├── nltkbg.png │ ├── numpybg.png │ ├── pandasbg.png │ ├── python.png │ ├── seaborn.png │ ├── sklearn_bg.png │ └── tensorflowbg.png └── datasets └── dataset_info.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/.gitignore -------------------------------------------------------------------------------- /01-Rock-vs-Mine-Prediction/Rock_vs_Mine_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/01-Rock-vs-Mine-Prediction/Rock_vs_Mine_Prediction.ipynb -------------------------------------------------------------------------------- /02-Diabetes-Prediction/Diabetes_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/02-Diabetes-Prediction/Diabetes_Prediction.ipynb -------------------------------------------------------------------------------- /03-House-Price-Prediction/House_Price_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/03-House-Price-Prediction/House_Price_Prediction.ipynb -------------------------------------------------------------------------------- /04-Fake-News-Prediction/Fake_News_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/04-Fake-News-Prediction/Fake_News_Prediction.ipynb -------------------------------------------------------------------------------- /05-Loan-Status-Prediction/Loan_Status_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/05-Loan-Status-Prediction/Loan_Status_Prediction.ipynb -------------------------------------------------------------------------------- /06-Wine-Quality-Prediction/Wine_Quality_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/06-Wine-Quality-Prediction/Wine_Quality_Prediction.ipynb -------------------------------------------------------------------------------- /07-Car-Price-Prediction/Car_Price_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/07-Car-Price-Prediction/Car_Price_Prediction.ipynb -------------------------------------------------------------------------------- /08-Gold-Price-Prediction/Gold_Price_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/08-Gold-Price-Prediction/Gold_Price_Prediction.ipynb -------------------------------------------------------------------------------- /09-Heart-Disease-Detection/Heart_Disease_Detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/09-Heart-Disease-Detection/Heart_Disease_Detection.ipynb -------------------------------------------------------------------------------- /10-DL-Handwritten-Digit-Recognition/Handwritten_Digit_Recognition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/10-DL-Handwritten-Digit-Recognition/Handwritten_Digit_Recognition.ipynb -------------------------------------------------------------------------------- /11-Soft-Drinks-Sales-Market-Analysis-and-Prediction/Soft_drinks_Sales_Market_Analysis_and_Prediction_final.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/11-Soft-Drinks-Sales-Market-Analysis-and-Prediction/Soft_drinks_Sales_Market_Analysis_and_Prediction_final.ipynb -------------------------------------------------------------------------------- /12-Credit-Card-Fraud-Detection/Credit_Card_Fraud_Detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/12-Credit-Card-Fraud-Detection/Credit_Card_Fraud_Detection.ipynb -------------------------------------------------------------------------------- /13-Customer-Segmentation/Customer_Segmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/13-Customer-Segmentation/Customer_Segmentation.ipynb -------------------------------------------------------------------------------- /14-Medical-Insurance-Cost-Prediction/Medical_Insurance_Cost_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/14-Medical-Insurance-Cost-Prediction/Medical_Insurance_Cost_Prediction.ipynb -------------------------------------------------------------------------------- /15-Big-Mart-Sales-Prediction/Supermarket_Sales_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/15-Big-Mart-Sales-Prediction/Supermarket_Sales_Prediction.ipynb -------------------------------------------------------------------------------- /16-Parkinsons-Disease-Detection/Parkinsons_Disease_Detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/16-Parkinsons-Disease-Detection/Parkinsons_Disease_Detection.ipynb -------------------------------------------------------------------------------- /17-Titanic-Survival-Prediction/Data/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/17-Titanic-Survival-Prediction/Data/train.csv -------------------------------------------------------------------------------- /17-Titanic-Survival-Prediction/Titanic_Survival_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/17-Titanic-Survival-Prediction/Titanic_Survival_Prediction.ipynb -------------------------------------------------------------------------------- /18-Movie-Recommendation-System/Movie_Recommendation_System.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/18-Movie-Recommendation-System/Movie_Recommendation_System.ipynb -------------------------------------------------------------------------------- /19-Movie-Recommendation-System-V2/Movie_Recommendation_System_V2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/19-Movie-Recommendation-System-V2/Movie_Recommendation_System_V2.ipynb -------------------------------------------------------------------------------- /20-DL-Breast-Cancer-Classification/Breast_Cancer_Classification_with_NN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/20-DL-Breast-Cancer-Classification/Breast_Cancer_Classification_with_NN.ipynb -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/Time_Series_Temperature_Forcasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/Time_Series_Temperature_Forcasting.ipynb -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/model/fingerprint.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/model/fingerprint.pb -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/model/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/model/keras_metadata.pb -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/model/saved_model.pb -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /21-DL-Time-Series-Temperature-Forecasting/model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/21-DL-Time-Series-Temperature-Forecasting/model/variables/variables.index -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/Multivariate_Time_Series_Weather_Forecasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/Multivariate_Time_Series_Weather_Forecasting.ipynb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/fingerprint.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/fingerprint.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/keras_metadata.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/saved_model.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_CNN/variables/variables.index -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/fingerprint.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/fingerprint.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/keras_metadata.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/saved_model.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_GRU/variables/variables.index -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/fingerprint.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/fingerprint.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/keras_metadata.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/saved_model.pb -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/22-DL-Multivariate-Time-Series-Weather-Forecasting/model_lstm/variables/variables.index -------------------------------------------------------------------------------- /23-DL-Face-Mask-Detection/Face_Mask_Detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/23-DL-Face-Mask-Detection/Face_Mask_Detection.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover.jpg -------------------------------------------------------------------------------- /assets/cover/cover_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_2.png -------------------------------------------------------------------------------- /assets/cover/cover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_3.png -------------------------------------------------------------------------------- /assets/cover/cover_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_4.png -------------------------------------------------------------------------------- /assets/cover/cover_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_5.png -------------------------------------------------------------------------------- /assets/cover/cover_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_6.png -------------------------------------------------------------------------------- /assets/cover/cover_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_7.png -------------------------------------------------------------------------------- /assets/cover/cover_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/cover/cover_8.png -------------------------------------------------------------------------------- /assets/icons/keras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/keras.png -------------------------------------------------------------------------------- /assets/icons/matplotlibbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/matplotlibbg.png -------------------------------------------------------------------------------- /assets/icons/nltk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/nltk.png -------------------------------------------------------------------------------- /assets/icons/nltkbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/nltkbg.png -------------------------------------------------------------------------------- /assets/icons/numpybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/numpybg.png -------------------------------------------------------------------------------- /assets/icons/pandasbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/pandasbg.png -------------------------------------------------------------------------------- /assets/icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/python.png -------------------------------------------------------------------------------- /assets/icons/seaborn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/seaborn.png -------------------------------------------------------------------------------- /assets/icons/sklearn_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/sklearn_bg.png -------------------------------------------------------------------------------- /assets/icons/tensorflowbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/assets/icons/tensorflowbg.png -------------------------------------------------------------------------------- /datasets/dataset_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveer-kader/ml-projects-py/HEAD/datasets/dataset_info.md --------------------------------------------------------------------------------