├── runtime.txt ├── Procfile ├── Demos ├── iris.gif ├── loan.gif ├── main.png ├── boston.gif ├── gender.gif └── weight.gif ├── static ├── files │ └── Resume.pdf ├── images │ ├── icons │ │ ├── a.ico │ │ ├── ml.png │ │ ├── www.png │ │ ├── blog.png │ │ ├── mail.png │ │ ├── phone.png │ │ ├── github.png │ │ ├── kaggle.png │ │ ├── location.png │ │ ├── twitter.png │ │ ├── whatsapp.png │ │ ├── youtube.png │ │ ├── instagram.png │ │ ├── linked-in.png │ │ └── a.svg │ └── photos │ │ ├── ask.jpeg │ │ ├── iris.jpg │ │ ├── flask.png │ │ ├── fork_it.png │ │ ├── gender.png │ │ ├── house.jpg │ │ ├── numpy.png │ │ ├── pandas.png │ │ ├── python.jpeg │ │ ├── python.png │ │ ├── seaborn.png │ │ ├── sklearn.png │ │ ├── sublime.png │ │ ├── vs_code.png │ │ ├── weight.png │ │ ├── anaconda.png │ │ ├── bootstrap.png │ │ ├── gunicorn.png │ │ ├── matplotlib.jpg │ │ └── loan-approved.jpg └── css │ ├── gender.min.css │ ├── weight.min.css │ ├── iris.min.css │ ├── weight.css │ ├── gender.sass │ ├── weight.sass │ ├── boston.min.css │ ├── loan.min.css │ ├── gender.css │ ├── iris.sass │ ├── boston.sass │ ├── iris.css │ ├── loan.sass │ ├── boston.css │ ├── loan.css │ ├── navbar_footer │ ├── navbar.min.css │ ├── navbar.css │ ├── navbar.css.map │ └── navbar.sass │ ├── all_projects.min.css │ ├── all_projects.css.map │ ├── all_projects.sass │ ├── all_projects.css │ └── bootstrap-4.5.0 │ ├── bootstrap-reboot.min.css │ └── bootstrap-reboot.css ├── models ├── weight_predictor.pkl ├── gender_classifier.pkl ├── loan_status_predictor.pkl ├── iris_species_classifier.pkl └── boston_house_price_predictor.pkl ├── 04.Weight_Prediction ├── images │ ├── gender_height.png │ ├── gender_weight.png │ ├── feature-relations.png │ ├── modelperformance.png │ ├── feature-correlaion.png │ ├── height_distribution.png │ └── weight_distribution.png ├── Notebooks │ └── .ipynb_checkpoints │ │ └── Weight Prediction-checkpoint.ipynb ├── weight_predictor.py └── README.md ├── 05.Boston_House_Price_Prediction ├── images │ ├── age.png │ ├── b.png │ ├── dis.png │ ├── nox.png │ ├── rad.png │ ├── rm.png │ ├── tax.png │ ├── zn.png │ ├── chas.png │ ├── crim.png │ ├── indus.png │ ├── lstat.png │ ├── medv.png │ ├── pairplot.png │ ├── ptration.png │ ├── feature_importances.png │ ├── features_correlation.png │ ├── correlation_with_price.png │ ├── random_forest_diff_RF_models.png │ ├── random_forest_diff_max_depth.png │ ├── random_decision_tree_regressor.png │ └── random_forest_diff_train_samples.png ├── house_price_predictor.py └── README.md ├── 02.Loan_Status_Prediction ├── images │ ├── term_counts.png │ ├── credit_counts_0.png │ ├── credit_counts_1.png │ ├── credit_counts_2.png │ ├── credit_counts_3.png │ ├── credit_counts_4.png │ ├── credit_counts_5.png │ ├── credit_counts_6.png │ ├── credit_counts_7.png │ ├── credit_counts_8.png │ ├── employed_counts.png │ ├── gender_counts.png │ ├── gender_counts_0.png │ ├── gender_counts_1.png │ ├── gender_counts_2.png │ ├── gender_counts_3.png │ ├── gender_counts_4.png │ ├── gender_counts_5.png │ ├── gender_counts_6.png │ ├── gender_counts_7.png │ ├── gender_counts_8.png │ ├── loan-approved.jpg │ ├── married_counts.png │ ├── employed_counts_0.png │ ├── employed_counts_1.png │ ├── employed_counts_2.png │ ├── employed_counts_3.png │ ├── employed_counts_4.png │ ├── employed_counts_5.png │ ├── employed_counts_6.png │ ├── employed_counts_7.png │ ├── employed_counts_8.png │ ├── loan_amount_term.png │ ├── loan_status_count.png │ ├── married_counts_0.png │ ├── married_counts_1.png │ ├── married_counts_2.png │ ├── married_counts_3.png │ ├── married_counts_4.png │ ├── married_counts_5.png │ ├── married_counts_6.png │ ├── married_counts_7.png │ ├── married_counts_8.png │ ├── property_counts_0.png │ ├── property_counts_1.png │ ├── property_counts_2.png │ ├── property_counts_3.png │ ├── property_counts_4.png │ ├── property_counts_5.png │ ├── property_counts_6.png │ ├── property_counts_7.png │ ├── property_counts_8.png │ ├── dependents_counts_0.png │ ├── dependents_counts_1.png │ ├── dependents_counts_2.png │ ├── dependents_counts_3.png │ ├── dependents_counts_4.png │ ├── dependents_counts_5.png │ ├── dependents_counts_6.png │ ├── dependents_counts_7.png │ ├── dependents_counts_8.png │ ├── education_counts_0.png │ ├── education_counts_1.png │ ├── education_counts_2.png │ ├── education_counts_3.png │ ├── education_counts_4.png │ ├── education_counts_5.png │ ├── education_counts_6.png │ ├── education_counts_7.png │ ├── education_counts_8.png │ ├── feature_importances.png │ ├── gender_description.png │ ├── loan_status_counts.png │ ├── LoanAmountDescription.png │ ├── LoanAmountDistribution.png │ ├── test_data_predictions.png │ ├── correlation_of_features.png │ ├── ApplicantIncomeDistribution.png │ ├── logistic_model_performance.png │ ├── CoapplicantIncomeDistribution.png │ ├── Loan_Amount_Term_value_counts.png │ ├── decision_tree_model_performance.png │ ├── correlation_of_features_with_loan_status.png │ └── decision_tree_classifier_model_performance.png └── loan_status_predictor_model.py ├── 03.Gender_Classifcation ├── images │ ├── gender_height.png │ ├── gender_weight.png │ ├── feature-relations.png │ ├── feature-correlaion.png │ ├── height_distribution.png │ └── weight_distribution.png ├── gender_classifier.py └── README.md ├── 01.Iris_Species_Classification ├── data │ ├── database.sqlite │ └── Iris.csv ├── images │ ├── load_iris.png │ ├── tree_code.png │ ├── iris_species.png │ ├── predictions.png │ ├── decision_tree.png │ ├── iris_species.jpeg │ ├── feature_pairplot.png │ ├── model_performance.png │ ├── feature_correlation.png │ ├── petal_length_width.png │ ├── petal_sepal_length.png │ ├── iris_descriptive_stats.png │ └── petal_width_sepal_length.png ├── iris_species_classifier.py └── README.md ├── py_modules ├── __pycache__ │ └── data_extraction.cpython-37.pyc └── data_extraction.py ├── requirements.txt ├── data ├── social-media-links.csv └── ML_Projects.csv ├── templates ├── weight_predictor.html ├── gender_classifier.html ├── boston_house_price_predictor.html ├── iris_species_classifier.html ├── base.html ├── loan_status_predictor.html └── all_projects.html ├── ml_projects.py ├── LICENSE.txt └── README.md /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.7 -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn ml_projects:ml_app -------------------------------------------------------------------------------- /Demos/iris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/iris.gif -------------------------------------------------------------------------------- /Demos/loan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/loan.gif -------------------------------------------------------------------------------- /Demos/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/main.png -------------------------------------------------------------------------------- /Demos/boston.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/boston.gif -------------------------------------------------------------------------------- /Demos/gender.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/gender.gif -------------------------------------------------------------------------------- /Demos/weight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/Demos/weight.gif -------------------------------------------------------------------------------- /static/files/Resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/files/Resume.pdf -------------------------------------------------------------------------------- /models/weight_predictor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/models/weight_predictor.pkl -------------------------------------------------------------------------------- /static/images/icons/a.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/a.ico -------------------------------------------------------------------------------- /static/images/icons/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/ml.png -------------------------------------------------------------------------------- /static/images/icons/www.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/www.png -------------------------------------------------------------------------------- /models/gender_classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/models/gender_classifier.pkl -------------------------------------------------------------------------------- /static/images/icons/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/blog.png -------------------------------------------------------------------------------- /static/images/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/mail.png -------------------------------------------------------------------------------- /static/images/icons/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/phone.png -------------------------------------------------------------------------------- /static/images/photos/ask.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/ask.jpeg -------------------------------------------------------------------------------- /static/images/photos/iris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/iris.jpg -------------------------------------------------------------------------------- /models/loan_status_predictor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/models/loan_status_predictor.pkl -------------------------------------------------------------------------------- /static/images/icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/github.png -------------------------------------------------------------------------------- /static/images/icons/kaggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/kaggle.png -------------------------------------------------------------------------------- /static/images/icons/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/location.png -------------------------------------------------------------------------------- /static/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/twitter.png -------------------------------------------------------------------------------- /static/images/icons/whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/whatsapp.png -------------------------------------------------------------------------------- /static/images/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/youtube.png -------------------------------------------------------------------------------- /static/images/photos/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/flask.png -------------------------------------------------------------------------------- /static/images/photos/fork_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/fork_it.png -------------------------------------------------------------------------------- /static/images/photos/gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/gender.png -------------------------------------------------------------------------------- /static/images/photos/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/house.jpg -------------------------------------------------------------------------------- /static/images/photos/numpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/numpy.png -------------------------------------------------------------------------------- /static/images/photos/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/pandas.png -------------------------------------------------------------------------------- /static/images/photos/python.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/python.jpeg -------------------------------------------------------------------------------- /static/images/photos/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/python.png -------------------------------------------------------------------------------- /static/images/photos/seaborn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/seaborn.png -------------------------------------------------------------------------------- /static/images/photos/sklearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/sklearn.png -------------------------------------------------------------------------------- /static/images/photos/sublime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/sublime.png -------------------------------------------------------------------------------- /static/images/photos/vs_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/vs_code.png -------------------------------------------------------------------------------- /static/images/photos/weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/weight.png -------------------------------------------------------------------------------- /models/iris_species_classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/models/iris_species_classifier.pkl -------------------------------------------------------------------------------- /static/images/icons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/instagram.png -------------------------------------------------------------------------------- /static/images/icons/linked-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/icons/linked-in.png -------------------------------------------------------------------------------- /static/images/photos/anaconda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/anaconda.png -------------------------------------------------------------------------------- /static/images/photos/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/bootstrap.png -------------------------------------------------------------------------------- /static/images/photos/gunicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/gunicorn.png -------------------------------------------------------------------------------- /static/css/gender.min.css: -------------------------------------------------------------------------------- 1 | .space{min-height:1rem}.male{color:#0000ff;font-size:4rem}.female{color:#00ff00;font-size:4rem}.status{font-size:2rem} 2 | -------------------------------------------------------------------------------- /static/images/photos/matplotlib.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/matplotlib.jpg -------------------------------------------------------------------------------- /models/boston_house_price_predictor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/models/boston_house_price_predictor.pkl -------------------------------------------------------------------------------- /static/css/weight.min.css: -------------------------------------------------------------------------------- 1 | .space{min-height:1rem}@media (min-width: 576px){.modal-dialog{max-width:calc(100% - 15rem) !important;margin:1rem auto}} 2 | -------------------------------------------------------------------------------- /static/images/photos/loan-approved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/static/images/photos/loan-approved.jpg -------------------------------------------------------------------------------- /04.Weight_Prediction/images/gender_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/gender_height.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/gender_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/gender_weight.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/age.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/b.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/dis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/dis.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/nox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/nox.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/rad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/rad.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/rm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/rm.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/tax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/tax.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/zn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/zn.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/term_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/term_counts.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/gender_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/gender_height.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/gender_weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/gender_weight.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/feature-relations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/feature-relations.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/modelperformance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/modelperformance.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/chas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/chas.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/crim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/crim.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/indus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/indus.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/lstat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/lstat.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/medv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/medv.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/data/database.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/data/database.sqlite -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/load_iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/load_iris.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/tree_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/tree_code.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/credit_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/credit_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/loan-approved.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/loan-approved.jpg -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/feature-relations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/feature-relations.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/feature-correlaion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/feature-correlaion.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/height_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/height_distribution.png -------------------------------------------------------------------------------- /04.Weight_Prediction/images/weight_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/04.Weight_Prediction/images/weight_distribution.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/pairplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/pairplot.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/ptration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/ptration.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/iris_species.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/iris_species.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/predictions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/predictions.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/employed_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/employed_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/loan_amount_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/loan_amount_term.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/loan_status_count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/loan_status_count.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/married_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/married_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/property_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/property_counts_8.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/feature-correlaion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/feature-correlaion.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/height_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/height_distribution.png -------------------------------------------------------------------------------- /03.Gender_Classifcation/images/weight_distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/03.Gender_Classifcation/images/weight_distribution.png -------------------------------------------------------------------------------- /04.Weight_Prediction/Notebooks/.ipynb_checkpoints/Weight Prediction-checkpoint.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [], 3 | "metadata": {}, 4 | "nbformat": 4, 5 | "nbformat_minor": 4 6 | } 7 | -------------------------------------------------------------------------------- /py_modules/__pycache__/data_extraction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/py_modules/__pycache__/data_extraction.cpython-37.pyc -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/decision_tree.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/iris_species.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/iris_species.jpeg -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/dependents_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/dependents_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_0.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_1.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_2.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_3.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_4.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_5.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_6.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_7.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/education_counts_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/education_counts_8.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/feature_importances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/feature_importances.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/gender_description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/gender_description.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/loan_status_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/loan_status_counts.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/feature_pairplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/feature_pairplot.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/model_performance.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/LoanAmountDescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/LoanAmountDescription.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/LoanAmountDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/LoanAmountDistribution.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/test_data_predictions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/test_data_predictions.png -------------------------------------------------------------------------------- /static/css/iris.min.css: -------------------------------------------------------------------------------- 1 | .space{min-height:1rem}.setosa{color:#4c72b0;font-size:5rem}.versicolor{color:#dd8452;font-size:4rem}.virginica{color:#55a867;font-size:4rem}.status{font-size:2rem} 2 | -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/feature_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/feature_correlation.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/petal_length_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/petal_length_width.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/petal_sepal_length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/petal_sepal_length.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/correlation_of_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/correlation_of_features.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/iris_descriptive_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/iris_descriptive_stats.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/ApplicantIncomeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/ApplicantIncomeDistribution.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/logistic_model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/logistic_model_performance.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/feature_importances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/feature_importances.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/features_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/features_correlation.png -------------------------------------------------------------------------------- /01.Iris_Species_Classification/images/petal_width_sepal_length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/01.Iris_Species_Classification/images/petal_width_sepal_length.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/CoapplicantIncomeDistribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/CoapplicantIncomeDistribution.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/Loan_Amount_Term_value_counts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/Loan_Amount_Term_value_counts.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/correlation_with_price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/correlation_with_price.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/decision_tree_model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/decision_tree_model_performance.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/random_forest_diff_RF_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/random_forest_diff_RF_models.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/random_forest_diff_max_depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/random_forest_diff_max_depth.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/random_decision_tree_regressor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/random_decision_tree_regressor.png -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/correlation_of_features_with_loan_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/correlation_of_features_with_loan_status.png -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/images/random_forest_diff_train_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/05.Boston_House_Price_Prediction/images/random_forest_diff_train_samples.png -------------------------------------------------------------------------------- /static/css/weight.css: -------------------------------------------------------------------------------- 1 | .space { 2 | min-height: 1rem; 3 | } 4 | 5 | @media (min-width: 576px) { 6 | .modal-dialog { 7 | max-width: calc(100% - 15rem) !important; 8 | margin: 1rem auto; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/images/decision_tree_classifier_model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASHOKKUMAR-K/Machine-Learning-Projects/HEAD/02.Loan_Status_Prediction/images/decision_tree_classifier_model_performance.png -------------------------------------------------------------------------------- /static/css/gender.sass: -------------------------------------------------------------------------------- 1 | .space 2 | min-height: 1rem 3 | 4 | .male 5 | color: #0000ff 6 | font-size: 4rem 7 | 8 | .female 9 | color: #00ff00 10 | font-size: 4rem 11 | 12 | .status 13 | font-size: 2rem -------------------------------------------------------------------------------- /static/css/weight.sass: -------------------------------------------------------------------------------- 1 | .space 2 | min-height: 1rem 3 | 4 | 5 | 6 | @media (min-width: 576px) 7 | .modal-dialog 8 | max-width: calc(100% - 15rem) !important 9 | margin: 1rem auto 10 | 11 | -------------------------------------------------------------------------------- /static/css/boston.min.css: -------------------------------------------------------------------------------- 1 | .space{min-height:1rem}.boston{font-size:2rem !important}.boston-price{font-size:4rem !important;color:#0000ff !important}@media (min-width: 576px){.modal-dialog{max-width:calc(100% - 30rem) !important;margin:1rem auto}} 2 | -------------------------------------------------------------------------------- /static/css/loan.min.css: -------------------------------------------------------------------------------- 1 | .space{min-height:1rem}.congrats{color:#00ff00;font-size:5rem}.rejects{color:#ff0000;font-size:4rem}.status{font-size:2rem}@media (min-width: 576px){.modal-dialog{max-width:calc(100% - 15rem) !important;margin:1rem auto}} 2 | -------------------------------------------------------------------------------- /static/css/gender.css: -------------------------------------------------------------------------------- 1 | .space { 2 | min-height: 1rem; 3 | } 4 | 5 | .male { 6 | color: #0000ff; 7 | font-size: 4rem; 8 | } 9 | 10 | .female { 11 | color: #00ff00; 12 | font-size: 4rem; 13 | } 14 | 15 | .status { 16 | font-size: 2rem; 17 | } 18 | -------------------------------------------------------------------------------- /static/css/iris.sass: -------------------------------------------------------------------------------- 1 | .space 2 | min-height: 1rem 3 | 4 | .setosa 5 | color: #4c72b0 6 | font-size: 5rem 7 | 8 | .versicolor 9 | color: #dd8452 10 | font-size: 4rem 11 | 12 | .virginica 13 | color: #55a867 14 | font-size: 4rem 15 | 16 | .status 17 | font-size: 2rem -------------------------------------------------------------------------------- /static/css/boston.sass: -------------------------------------------------------------------------------- 1 | .space 2 | min-height: 1rem 3 | 4 | .boston 5 | font-size: 2rem !important 6 | 7 | .boston-price 8 | font-size: 4rem !important 9 | color: #0000ff !important 10 | 11 | @media (min-width: 576px) 12 | .modal-dialog 13 | max-width: calc(100% - 30rem) !important 14 | margin: 1rem auto -------------------------------------------------------------------------------- /static/css/iris.css: -------------------------------------------------------------------------------- 1 | .space { 2 | min-height: 1rem; 3 | } 4 | 5 | .setosa { 6 | color: #4c72b0; 7 | font-size: 5rem; 8 | } 9 | 10 | .versicolor { 11 | color: #dd8452; 12 | font-size: 4rem; 13 | } 14 | 15 | .virginica { 16 | color: #55a867; 17 | font-size: 4rem; 18 | } 19 | 20 | .status { 21 | font-size: 2rem; 22 | } 23 | -------------------------------------------------------------------------------- /static/css/loan.sass: -------------------------------------------------------------------------------- 1 | .space 2 | min-height: 1rem 3 | 4 | .congrats 5 | color: #00ff00 6 | font-size: 5rem 7 | 8 | .rejects 9 | color: #ff0000 10 | font-size: 4rem 11 | 12 | .status 13 | font-size: 2rem 14 | 15 | @media (min-width: 576px) 16 | .modal-dialog 17 | max-width: calc(100% - 15rem) !important 18 | margin: 1rem auto -------------------------------------------------------------------------------- /static/css/boston.css: -------------------------------------------------------------------------------- 1 | .space { 2 | min-height: 1rem; 3 | } 4 | 5 | .boston { 6 | font-size: 2rem !important; 7 | } 8 | 9 | .boston-price { 10 | font-size: 4rem !important; 11 | color: #0000ff !important; 12 | } 13 | 14 | @media (min-width: 576px) { 15 | .modal-dialog { 16 | max-width: calc(100% - 30rem) !important; 17 | margin: 1rem auto; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/css/loan.css: -------------------------------------------------------------------------------- 1 | .space { 2 | min-height: 1rem; 3 | } 4 | 5 | .congrats { 6 | color: #00ff00; 7 | font-size: 5rem; 8 | } 9 | 10 | .rejects { 11 | color: #ff0000; 12 | font-size: 4rem; 13 | } 14 | 15 | .status { 16 | font-size: 2rem; 17 | } 18 | 19 | @media (min-width: 576px) { 20 | .modal-dialog { 21 | max-width: calc(100% - 15rem) !important; 22 | margin: 1rem auto; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /static/css/navbar_footer/navbar.min.css: -------------------------------------------------------------------------------- 1 | body{user-select:none}.navbar-color{background-color:#6f4a9a}.navbar-expand-lg .navbar-nav .nav-link{padding-left:1rem;padding-right:1rem;font-size:1rem}.navbar{padding:.5rem 1rem}.my_name{padding-left:0rem;margin-top:0.3rem;font-size:1.7rem}ul{list-style:none;padding:0px;text-align:left}.footer,a,a:hover{color:#fff;text-decoration:none}.social-links li{padding:0.2rem}.text-white{color:#fff}.navbar-toggler{padding:0.3rem}.content{padding:2rem;min-height:70vh} 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.0 2 | click==7.1.2 3 | cycler==0.10.0 4 | distributed==2.16.0 5 | Flask==1.1.2 6 | gunicorn==20.0.4 7 | itsdangerous==1.1.0 8 | Jinja2==2.11.2 9 | joblib==0.14.1 10 | json5==0.9.4 11 | jsonschema==3.2.0 12 | kiwisolver==1.2.0 13 | Markdown==3.2.1 14 | MarkupSafe==1.1.1 15 | matplotlib==3.1.3 16 | numpy==1.18.1 17 | pandas==1.0.3 18 | pickleshare==0.7.5 19 | python-dateutil==2.8.1 20 | python-jsonrpc-server==0.3.4 21 | python-language-server==0.31.10 22 | pytz==2020.1 23 | PyYAML==5.3.1 24 | requests==2.23.0 25 | requests-oauthlib==1.3.0 26 | scikit-learn==0.22.1 27 | scipy==1.4.1 28 | seaborn==0.10.1 29 | six==1.14.0 30 | statsmodels==0.11.0 31 | urllib3==1.25.8 32 | Werkzeug==1.0.1 33 | -------------------------------------------------------------------------------- /py_modules/data_extraction.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | import numpy as np 3 | 4 | def get_social_link_data(social): 5 | ''' 6 | Returns a NumPy array of social data 7 | ''' 8 | 9 | # Extracting Social Link Name 10 | social_name = social.iloc[:, 0].values 11 | 12 | # Extracting Social Link 13 | social_link = social.iloc[:, 1].values 14 | 15 | # Extracting Social Links Text 16 | social_text = social.iloc[:, 2].values 17 | 18 | # Extracting Social Logo path 19 | social_logo_path = social.iloc[:, 3].values 20 | 21 | return np.asarray([social_name, social_link, social_text, social_logo_path]) 22 | 23 | def get_ml_projects_data(ml_projects): 24 | # Sorting to bring recent projects at the beginning 25 | ml_projects.sort_values(by = 'Project_No', ascending = False, inplace = True) 26 | 27 | return ml_projects.T.values -------------------------------------------------------------------------------- /data/social-media-links.csv: -------------------------------------------------------------------------------- 1 | Media,Links,Links_Text,Icons 2 | Location,#,Chennai,images/icons/location.png 3 | Contact,#,+91 6382040562,images/icons/phone.png 4 | WhatsApp,#,+91 8056224273,images/icons/whatsapp.png 5 | Email,mailto:ashokkumark.citeee2017@gmail.com,Gmail,images/icons/mail.png 6 | GitHub,https://github.com/ASHOKKUMAR-K,GitHub,images/icons/github.png 7 | YouTube,https://www.youtube.com/,YouTube,images/icons/youtube.png 8 | Medium,https://medium.com/@Ashok_kumar_K,Medium,images/icons/blog.png 9 | Linkedin,https://www.linkedin.com/in/ashok-kumar-k-6641bb16a,Linkedin,images/icons/linked-in.png 10 | Kaggle,https://www.kaggle.com/ashokkumar1085,Kaggle,images/icons/kaggle.png 11 | Instagram,https://www.instagram.com/ashok0487,Instagram,images/icons/instagram.png 12 | Twitter,https://twitter.com/ASHOKKU90871834,Twitter,images/icons/twitter.png -------------------------------------------------------------------------------- /static/css/navbar_footer/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | user-select: none; 3 | } 4 | 5 | .navbar-color { 6 | background-color: #6f4a9a; 7 | } 8 | 9 | .navbar-expand-lg .navbar-nav .nav-link { 10 | padding-left: 1rem; 11 | padding-right: 1rem; 12 | font-size: 1rem; 13 | } 14 | 15 | .navbar { 16 | padding: 0.5rem 1rem; 17 | } 18 | 19 | .my_name { 20 | padding-left: 0rem; 21 | margin-top: 0.3rem; 22 | font-size: 1.7rem; 23 | } 24 | 25 | ul { 26 | list-style: none; 27 | padding: 0px; 28 | text-align: left; 29 | } 30 | 31 | .footer, a, a:hover { 32 | color: #ffffff; 33 | text-decoration: none; 34 | } 35 | 36 | .social-links li { 37 | padding: 0.2rem; 38 | } 39 | 40 | .text-white { 41 | color: #ffffff; 42 | } 43 | 44 | .navbar-toggler { 45 | padding: 0.3rem; 46 | } 47 | 48 | .content { 49 | padding: 2rem; 50 | min-height: 70vh; 51 | } 52 | -------------------------------------------------------------------------------- /static/css/navbar_footer/navbar.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAOA,AAAA,IAAI,CAAC;EACD,WAAW,EAAE,IAAI;CAAG;;AAIxB,AAAA,aAAa,CAAC;EACV,gBAAgB,EAbH,OAAO;CAae;;AAEvC,AAAA,iBAAiB,CAAC,WAAW,CAAC,SAAS,CAAC;EACpC,YAAY,EAfK,IAAI;EAgBrB,aAAa,EAhBI,IAAI;EAiBrB,SAAS,EAAE,IAAI;CAAG;;AAEtB,AAAA,OAAO,CAAC;EACJ,OAAO,EAnBU,MAAM,CADN,IAAI;CAoB8B;;AAEvD,AAAA,QAAQ,CAAC;EACL,YAAY,EAAE,IAAI;EAClB,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,MAAM;CAAG;;AAExB,AAAA,EAAE,CAAC;EACC,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;CAAG;;AAEvB,AAAA,OAAO,EAAE,CAAC,EAAE,CAAC,AAAA,MAAM,CAAC;EAChB,KAAK,EA9BI,OAAO;EA+BhB,eAAe,EAAE,IAAI;CAAG;;AAE5B,AAAA,aAAa,CAAC,EAAE,CAAC;EACb,OAAO,EAAE,MAAM;CAAG;;AAEtB,AAAA,WAAW,CAAC;EACR,KAAK,EArCI,OAAO;CAqCK;;AAEzB,AAAA,eAAe,CAAC;EACZ,OAAO,EAAE,MAAM;CAAG", 4 | "sources": [ 5 | "navbar.sass" 6 | ], 7 | "names": [], 8 | "file": "navbar.css" 9 | } -------------------------------------------------------------------------------- /static/css/all_projects.min.css: -------------------------------------------------------------------------------- 1 | .img-top-content{position:relative}.img-front{max-height:16rem;opacity:1;display:block;transition:.5s ease;backface-visibility:hidden}.centered-content{transition:.5s ease;opacity:0;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);text-align:center}.img-top-content:hover .img-front{opacity:0.6}.img-top-content:hover .centered-content{opacity:1}.card-title{margin:0px;padding-top:1rem}.modal-body{padding:2rem}.date{justify-content:center;padding:1.5rem 0rem}.date-content{font-weight:bolder;text-align:center}@media (min-width: 576px){.modal-dialog{max-width:calc(100% - 15rem) !important;margin:1rem auto}}.space{min-height:2rem}.algo{color:#00f !important}.pad{max-height:8rem;max-width:7rem;margin:1rem 1.5rem}.side{padding:0.5rem;border-radius:0.3rem;width:100%}.launch{padding:1rem !important;font-weight:bold;margin-bottom:1rem;width:100%}.project{margin:1rem auto}.shadow-effects{box-shadow:0rem 0rem 1.5rem rgba(0,0,0,0.4) !important}.para-content{text-align:justify} 2 | -------------------------------------------------------------------------------- /static/css/all_projects.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "AAAA,AAAA,QAAQ,CAAC;EACL,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;CAAG;;AAEvB,AAAA,gBAAgB,CAAC;EACb,QAAQ,EAAE,QAAQ;CACpB;;AAEF,AAAA,UAAU,CAAC;EACP,UAAU,EAAE,KAAK;EACjB,OAAO,EAAE,CAAC;EACV,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,QAAQ;EACpB,mBAAmB,EAAE,MAAM;CAAG;;AAElC,AAAA,iBAAiB,CAAC;EACd,UAAU,EAAE,QAAQ;EACpB,OAAO,EAAE,CAAC;EACV,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,SAAS,EAAE,qBAAqB;EAChC,UAAU,EAAE,MAAM;CAAG;;AAEzB,AAAA,gBAAgB,AAAA,MAAM,CAAC,UAAU,CAAC;EAC9B,OAAO,EAAE,GAAG;CAAG;;AAEnB,AAAA,gBAAgB,AAAA,MAAM,CAAC,iBAAiB,CAAC;EACrC,OAAO,EAAE,CAAC;CAAG;;AAEjB,AAAA,WAAW,CAAC;EACR,MAAM,EAAE,GAAG;EACX,WAAW,EAAE,IAAI;CAAG;;AAExB,AAAA,WAAW,CAAC;EACR,OAAO,EAAE,IAAI;CAAG;;AAEpB,AAAA,KAAK,CAAC;EACF,eAAe,EAAE,MAAM;CAAG;;AAE9B,MAAM,EAAE,SAAS,EAAE,KAAK;EACpB,AAAA,aAAa,CAAC;IACV,SAAS,EAAE,kBAAkB,CAAC,UAAU;IACxC,MAAM,EAAE,SAAS;GAAG", 4 | "sources": [ 5 | "all_projects.sass" 6 | ], 7 | "names": [], 8 | "file": "all_projects.css" 9 | } -------------------------------------------------------------------------------- /static/css/navbar_footer/navbar.sass: -------------------------------------------------------------------------------- 1 | $primary-color : #6f4a9a 2 | $padding-left-right: 1rem 3 | $padding-top-bottom: 0.5rem 4 | $light-white: #cccccc 5 | $full-white: #ffffff 6 | 7 | 8 | body 9 | user-select: none 10 | 11 | 12 | 13 | .navbar-color 14 | background-color: $primary-color 15 | 16 | .navbar-expand-lg .navbar-nav .nav-link 17 | padding-left: $padding-left-right 18 | padding-right: $padding-left-right 19 | font-size: 1rem 20 | 21 | .navbar 22 | padding: $padding-top-bottom $padding-left-right 23 | 24 | .my_name 25 | padding-left: 0rem 26 | margin-top: 0.3rem 27 | font-size: 1.7rem 28 | 29 | ul 30 | list-style: none 31 | padding: 0px 32 | text-align: left 33 | 34 | .footer, a, a:hover 35 | color: $full-white 36 | text-decoration: none 37 | 38 | .social-links li 39 | padding: 0.2rem 40 | 41 | .text-white 42 | color: $full-white 43 | 44 | .navbar-toggler 45 | padding: 0.3rem 46 | 47 | .content 48 | padding: 2rem 49 | min-height: 70vh 50 | -------------------------------------------------------------------------------- /static/images/icons/a.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /03.Gender_Classifcation/gender_classifier.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Thu Jul 9 22:23:54 2020 5 | 6 | @author: ashokubuntu 7 | """ 8 | # Importing Packages 9 | import pandas as pd 10 | import numpy as np 11 | 12 | from sklearn.pipeline import make_pipeline 13 | from sklearn.preprocessing import StandardScaler 14 | from sklearn.svm import SVC 15 | from sklearn.model_selection import train_test_split 16 | 17 | import pickle 18 | # Loading Weight Height Data 19 | wh = pd.read_csv('data/weight-height.csv') 20 | 21 | # Extracting Prediction and Features values 22 | X = wh.iloc[:, [1, 2]].values 23 | y = wh.iloc[:, 0].values 24 | 25 | # Splitting data for training and testing 26 | X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, 27 | random_state = 42) 28 | 29 | # Creating Support Vector Machine classifier Model 30 | gender_classifier = make_pipeline(StandardScaler(), SVC(gamma='auto', probability = True)) 31 | gender_classifier.fit(X_train, y_train) 32 | 33 | # Dumping Model to a pickle file 34 | pickle.dump(gender_classifier, open("../models/gender_classifier.pkl", "wb")) -------------------------------------------------------------------------------- /04.Weight_Prediction/weight_predictor.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Thu Jul 9 22:57:58 2020 5 | 6 | @author: ashokubuntu 7 | """ 8 | 9 | # Importing Packages 10 | import pandas as pd 11 | import numpy as np 12 | 13 | from sklearn.pipeline import make_pipeline 14 | from sklearn.preprocessing import StandardScaler 15 | from sklearn.linear_model import LinearRegression 16 | from sklearn.model_selection import train_test_split 17 | 18 | import pickle 19 | # Loading Weight Height Data 20 | wh = pd.read_csv('data/weight-height.csv') 21 | 22 | # Converting Categorical values to Numerical values 23 | wh['Gender'] = wh['Gender'].apply(lambda x : {'Male' : 1, 'Female' : 0}[x]) 24 | 25 | # Extracting Prediction and Features values 26 | X = wh.iloc[:, [1, 0]].values 27 | y = wh.iloc[:, 2].values 28 | 29 | # Splitting data for training and testing 30 | X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.25, 31 | random_state = 42) 32 | 33 | # Creating Support Vector Machine classifier Model 34 | weight_predictor = make_pipeline(StandardScaler(), LinearRegression()) 35 | weight_predictor.fit(X_train, y_train) 36 | 37 | # Dumping Model to a pickle file 38 | pickle.dump(weight_predictor, open("../models/weight_predictor.pkl", "wb")) -------------------------------------------------------------------------------- /01.Iris_Species_Classification/iris_species_classifier.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Thu Jul 9 18:24:11 2020 5 | 6 | @author: ashokubuntu 7 | """ 8 | 9 | 10 | # Importing Packages 11 | import numpy as np 12 | import pandas as pd 13 | from sklearn.model_selection import train_test_split 14 | from sklearn.tree import DecisionTreeClassifier 15 | 16 | import pickle 17 | 18 | # Loading Data 19 | iris = pd.read_csv('data/Iris.csv') 20 | 21 | # Extracting Features and prediction column 22 | predictions = ['PetalLengthCm', 'PetalWidthCm', 'Species'] 23 | 24 | # Selecting Iris Features 25 | iris_features = iris.loc[:, ['PetalLengthCm', 'PetalWidthCm']] 26 | # Selecting Iris Species 27 | iris_species = iris.loc[:, 'Species'] 28 | 29 | # Converting Pandas DataFrames and Series into Numpy arrays 30 | features_values = iris_features.values 31 | species_values = iris_species.values 32 | 33 | # TODO : Split the dataset as Train set and Test set. 34 | X_train, X_test, y_train, y_test = train_test_split(features_values, species_values, 35 | test_size = 0.25, random_state = 42) 36 | 37 | # TODO : Build Decision Tree Classifier Model 38 | iris_classifier = DecisionTreeClassifier(criterion = 'gini') 39 | iris_classifier.fit(X_train, y_train) 40 | 41 | # Dumping Model to a pickle file 42 | pickle.dump(iris_classifier, open("../models/iris_species_classifier.pkl", "wb")) -------------------------------------------------------------------------------- /static/css/all_projects.sass: -------------------------------------------------------------------------------- 1 | 2 | .img-top-content 3 | position: relative 4 | // width: 50% 5 | 6 | .img-front 7 | max-height: 16rem 8 | opacity: 1 9 | display: block 10 | transition: .5s ease 11 | backface-visibility: hidden 12 | 13 | .centered-content 14 | transition: .5s ease 15 | opacity: 0 16 | position: absolute 17 | top: 50% 18 | left: 50% 19 | transform: translate(-50%, -50%) 20 | text-align: center 21 | 22 | .img-top-content:hover .img-front 23 | opacity: 0.6 24 | 25 | .img-top-content:hover .centered-content 26 | opacity: 1 27 | 28 | .card-title 29 | margin: 0px 30 | padding-top: 1rem 31 | 32 | .modal-body 33 | padding: 2rem 34 | 35 | .date 36 | justify-content: center 37 | padding: 1.5rem 0rem 38 | 39 | .date-content 40 | font-weight: bolder 41 | text-align: center 42 | 43 | @media (min-width: 576px) 44 | .modal-dialog 45 | max-width: calc(100% - 15rem) !important 46 | margin: 1rem auto 47 | 48 | .space 49 | min-height: 2rem 50 | 51 | .algo 52 | color: #00f !important 53 | 54 | .pad 55 | max-height: 8rem 56 | max-width: 7rem 57 | margin: 1rem 1.5rem 58 | 59 | .side 60 | padding: 0.5rem 61 | border-radius: 0.3rem 62 | width: 100% 63 | 64 | .launch 65 | padding: 1rem !important 66 | font-weight: bold 67 | margin-bottom: 1rem 68 | width: 100% 69 | 70 | .project 71 | margin: 1rem auto 72 | 73 | .shadow-effects 74 | box-shadow: 0rem 0rem 1.5rem rgba(0,0,0,0.4) !important 75 | 76 | .para-content 77 | text-align: justify -------------------------------------------------------------------------------- /static/css/all_projects.css: -------------------------------------------------------------------------------- 1 | .img-top-content { 2 | position: relative; 3 | } 4 | 5 | .img-front { 6 | max-height: 16rem; 7 | opacity: 1; 8 | display: block; 9 | transition: .5s ease; 10 | backface-visibility: hidden; 11 | } 12 | 13 | .centered-content { 14 | transition: .5s ease; 15 | opacity: 0; 16 | position: absolute; 17 | top: 50%; 18 | left: 50%; 19 | transform: translate(-50%, -50%); 20 | text-align: center; 21 | } 22 | 23 | .img-top-content:hover .img-front { 24 | opacity: 0.6; 25 | } 26 | 27 | .img-top-content:hover .centered-content { 28 | opacity: 1; 29 | } 30 | 31 | .card-title { 32 | margin: 0px; 33 | padding-top: 1rem; 34 | } 35 | 36 | .modal-body { 37 | padding: 2rem; 38 | } 39 | 40 | .date { 41 | justify-content: center; 42 | padding: 1.5rem 0rem; 43 | } 44 | 45 | .date-content { 46 | font-weight: bolder; 47 | text-align: center; 48 | } 49 | 50 | @media (min-width: 576px) { 51 | .modal-dialog { 52 | max-width: calc(100% - 15rem) !important; 53 | margin: 1rem auto; 54 | } 55 | } 56 | 57 | .space { 58 | min-height: 2rem; 59 | } 60 | 61 | .algo { 62 | color: #00f !important; 63 | } 64 | 65 | .pad { 66 | max-height: 8rem; 67 | max-width: 7rem; 68 | margin: 1rem 1.5rem; 69 | } 70 | 71 | .side { 72 | padding: 0.5rem; 73 | border-radius: 0.3rem; 74 | width: 100%; 75 | } 76 | 77 | .launch { 78 | padding: 1rem !important; 79 | font-weight: bold; 80 | margin-bottom: 1rem; 81 | width: 100%; 82 | } 83 | 84 | .project { 85 | margin: 1rem auto; 86 | } 87 | 88 | .shadow-effects { 89 | box-shadow: 0rem 0rem 1.5rem rgba(0, 0, 0, 0.4) !important; 90 | } 91 | 92 | .para-content { 93 | text-align: justify; 94 | } 95 | -------------------------------------------------------------------------------- /05.Boston_House_Price_Prediction/house_price_predictor.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Sat Jul 11 14:49:51 2020 5 | 6 | @author: ashokubuntu 7 | """ 8 | 9 | # Importing Packages 10 | import pandas as pd 11 | import numpy as np 12 | 13 | from sklearn.model_selection import train_test_split 14 | from sklearn.ensemble import RandomForestRegressor 15 | 16 | import pickle 17 | 18 | # Loading Data 19 | columns = ['CRIM', 'ZN', 'INDUS', 'CHAS', 'NOX', 'RM', 'AGE', 20 | 'DIS', 'RAD', 'TAX', 'PTRATIO', 'B', 'LSTAT', 'MEDV'] 21 | boston = pd.read_csv('data/housing.csv', delimiter=r"\s+", 22 | names = columns) 23 | 24 | # Selecting Top 6 Features 25 | top_6_features = ['LSTAT', 'RM', 'PTRATIO', 'INDUS', 'TAX', 'NOX'] 26 | 27 | # Extracting top features values 28 | features = boston.loc[:, top_6_features].values 29 | 30 | # Extracting Prediction values 31 | predictions = boston.loc[:, 'MEDV'].values 32 | 33 | # Splitting Data into train and test 34 | # Choosing Optimal Training Samples 35 | X_train, X_test, y_train, y_test = train_test_split(features, 36 | predictions, 37 | test_size = 0.20, 38 | random_state = 3) 39 | 40 | # Building Optimal Random Forest regressor Model 41 | random_forest_regressor = RandomForestRegressor(max_depth = 13, 42 | random_state = 68) 43 | random_forest_regressor.fit(X_train, y_train) 44 | 45 | # Dumping Model to a pickle file 46 | pickle.dump(random_forest_regressor, open("../models/boston_house_price_predictor.pkl", "wb")) -------------------------------------------------------------------------------- /02.Loan_Status_Prediction/loan_status_predictor_model.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Thu Jul 9 07:36:14 2020 5 | 6 | @author: ashokubuntu 7 | """ 8 | 9 | # Importing Packages 10 | import numpy as np 11 | import pandas as pd 12 | from sklearn.tree import DecisionTreeClassifier 13 | 14 | import pickle 15 | 16 | 17 | # TODO : Filling Above values on LoanAmount column based on LoanStatus. 18 | def LoanAmount_null_values_filler(df): 19 | ''' Fills null value on LoanAmount based on Loan_Status ''' 20 | for row in range(df.shape[0]): 21 | if pd.isnull(df.loc[row, 'LoanAmount']): 22 | if df.loc[row, 'Loan_Status'] == 'Y': 23 | df.loc[row, 'LoanAmount'] = 151.22 24 | elif df.loc[row, 'Loan_Status'] == 'N': 25 | df.loc[row, 'LoanAmount'] = 144.29 26 | else: 27 | pass 28 | return df 29 | 30 | # TODO : Function for filling null values on dependents columns 31 | def dependents_null_value_filler(df): 32 | for row in range(df.shape[0]): 33 | if df.loc[row, 'Dependents'] is np.nan: 34 | df.loc[row, 'Dependents'] = str(df.loc[row, 'Married']) 35 | return df 36 | 37 | # Loading Train data 38 | train_data = pd.read_csv('data/train_u6lujuX_CVtuZ9i.csv') 39 | 40 | # Initialzing Prediction features 41 | prediction_features = ['Credit_History', 'LoanAmount', 'ApplicantIncome', 'CoapplicantIncome', 'Dependents', 'Loan_Status', 'Married'] 42 | 43 | # Extracting prediction data from the whole data 44 | train_data = train_data.loc[:, prediction_features] 45 | 46 | # TODO : Filling null values on Credit_History 47 | train_data['Credit_History'] = train_data['Credit_History'].fillna(value = 1.0) 48 | 49 | # TODO : Filling null values on LoanAmount 50 | train_data = LoanAmount_null_values_filler(train_data) 51 | 52 | # Let's fill null values in Married columns with 'Yes' 53 | train_data['Married'] = train_data['Married'].fillna('Yes') 54 | 55 | # TODO : encoding categorical values into numerical values 56 | train_data['Married'] = train_data['Married'].apply(lambda x : {'Yes' : 1, 'No' : 0}[x]) 57 | 58 | # TODO : Fill null values on Dependents column 59 | train_data = dependents_null_value_filler(train_data) 60 | 61 | # TODO : Encoding Categorical data into Numerical Data 62 | train_data['Dependents'] = train_data['Dependents'].apply(lambda x : {'0' : 0, '1' : 1, '2' : 2, '3+' : 3}[x]) 63 | 64 | # Drop Married Column 65 | train_data.drop('Married', inplace = True, axis = 1) 66 | 67 | # Extracting Feature Values and Prediction Values 68 | feature_values = train_data.iloc[:, :-1].values 69 | prediction_values = train_data['Loan_Status'].values 70 | 71 | # Creating Decision Tree Classifier Model 72 | decision_tree_model = DecisionTreeClassifier(max_depth = 8) 73 | decision_tree_model.fit(feature_values, prediction_values) 74 | 75 | # Dumping Model to a pickle file 76 | pickle.dump(decision_tree_model, open("../models/loan_status_predictor.pkl", "wb")) -------------------------------------------------------------------------------- /templates/weight_predictor.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %}Weight Predictor{% endblock %} 4 | 5 | {% block css_links %} 6 | 7 | {% endblock %} 8 | 9 | {% block content %} 10 | 11 |














179 | 




180 |
181 |
182 | ## Team
183 | [
](https://ashok-machine-learning-project.herokuapp.com/) |
184 | -|
185 | [ASHOK KUMAR K](https://ashok-machine-learning-project.herokuapp.com) |)
186 |
187 | ## License
188 | Copyright 2020 ASHOK KUMAR K
189 |
190 | Licensed under the Apache License, Version 2.0 (the "License");
191 | you may not use this file except in compliance with the License.
192 | You may obtain a copy of the License at
193 |
194 | http://www.apache.org/licenses/LICENSE-2.0
195 |
196 | Unless required by applicable law or agreed to in writing, software
197 | distributed under the License is distributed on an "AS IS" BASIS,
198 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
199 | See the License for the specific language governing permissions and
200 | limitations under the License.
201 |
202 | ## Credits
203 | 1. Kaggle - I have collected dataset from kaggle for some of the projects such as Loan Status Prediction, Iris Species Classification, Boston House Price Prediction, etc..,
204 |
--------------------------------------------------------------------------------
/05.Boston_House_Price_Prediction/README.md:
--------------------------------------------------------------------------------
1 | 












