├── Jupyter_Notebooks ├── ConfidenceInterval.ipynb ├── Joint_Loan_Analysis.ipynb ├── Model_Selection.ipynb ├── Model_Tuning.ipynb ├── Model_Validation.ipynb ├── Scaling_Data.ipynb └── Splitting_Data.ipynb ├── Procfile ├── README.md ├── app.py ├── data ├── df_macro_mean.csv ├── df_macro_std.csv ├── df_train_jl_scale.csv ├── grade_to_apr.csv └── grade_to_fico.csv ├── models ├── clf.pkl ├── gb_cv_compact_joint.pkl ├── knn_regression.pkl ├── xgb_cv_compact.pkl └── xgb_cv_final.pkl ├── requirements.txt ├── static ├── css │ ├── bootstrap.css │ ├── fontawesome-all.css │ ├── magnific-popup.css │ ├── styles.css │ └── swiper.css ├── images │ ├── Joint_features_weight.PNG │ ├── Kunal.png │ ├── about.jpg │ ├── down-arrow.png │ ├── favicon.png │ ├── features_weight.PNG │ ├── header-background.jpg │ ├── hexagon-green.svg │ ├── hexagon-white.svg │ ├── intro-office.jpg │ ├── kunal.png │ ├── logo.svg │ ├── prc_curve_all_models.png │ ├── prc_curve_all_models_joint.PNG │ ├── roc_curve_all_models.png │ ├── roc_curve_all_models_joint.PNG │ ├── threshold_Individual.png │ ├── threshold_joint.png │ └── up-arrow.png ├── js │ ├── bootstrap.min.js │ ├── isotope.pkgd.min.js │ ├── jquery.easing.min.js │ ├── jquery.magnific-popup.js │ ├── jquery.min.js │ ├── morphext.min.js │ ├── popper.min.js │ ├── scripts.js │ ├── swiper.min.js │ └── validator.min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 └── templates ├── Individual.html ├── Joint.html ├── index.html ├── jointreport.html └── report.html /Jupyter_Notebooks/ConfidenceInterval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/ConfidenceInterval.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Joint_Loan_Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Joint_Loan_Analysis.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Model_Selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Model_Selection.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Model_Tuning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Model_Tuning.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Model_Validation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Model_Validation.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Scaling_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Scaling_Data.ipynb -------------------------------------------------------------------------------- /Jupyter_Notebooks/Splitting_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/Jupyter_Notebooks/Splitting_Data.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/app.py -------------------------------------------------------------------------------- /data/df_macro_mean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/data/df_macro_mean.csv -------------------------------------------------------------------------------- /data/df_macro_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/data/df_macro_std.csv -------------------------------------------------------------------------------- /data/df_train_jl_scale.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/data/df_train_jl_scale.csv -------------------------------------------------------------------------------- /data/grade_to_apr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/data/grade_to_apr.csv -------------------------------------------------------------------------------- /data/grade_to_fico.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/data/grade_to_fico.csv -------------------------------------------------------------------------------- /models/clf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/models/clf.pkl -------------------------------------------------------------------------------- /models/gb_cv_compact_joint.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/models/gb_cv_compact_joint.pkl -------------------------------------------------------------------------------- /models/knn_regression.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/models/knn_regression.pkl -------------------------------------------------------------------------------- /models/xgb_cv_compact.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/models/xgb_cv_compact.pkl -------------------------------------------------------------------------------- /models/xgb_cv_final.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/models/xgb_cv_final.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/css/fontawesome-all.css -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/css/swiper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/css/swiper.css -------------------------------------------------------------------------------- /static/images/Joint_features_weight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/Joint_features_weight.PNG -------------------------------------------------------------------------------- /static/images/Kunal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/Kunal.png -------------------------------------------------------------------------------- /static/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/about.jpg -------------------------------------------------------------------------------- /static/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/down-arrow.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/features_weight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/features_weight.PNG -------------------------------------------------------------------------------- /static/images/header-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/header-background.jpg -------------------------------------------------------------------------------- /static/images/hexagon-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/hexagon-green.svg -------------------------------------------------------------------------------- /static/images/hexagon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/hexagon-white.svg -------------------------------------------------------------------------------- /static/images/intro-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/intro-office.jpg -------------------------------------------------------------------------------- /static/images/kunal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/kunal.png -------------------------------------------------------------------------------- /static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/logo.svg -------------------------------------------------------------------------------- /static/images/prc_curve_all_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/prc_curve_all_models.png -------------------------------------------------------------------------------- /static/images/prc_curve_all_models_joint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/prc_curve_all_models_joint.PNG -------------------------------------------------------------------------------- /static/images/roc_curve_all_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/roc_curve_all_models.png -------------------------------------------------------------------------------- /static/images/roc_curve_all_models_joint.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/roc_curve_all_models_joint.PNG -------------------------------------------------------------------------------- /static/images/threshold_Individual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/threshold_Individual.png -------------------------------------------------------------------------------- /static/images/threshold_joint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/threshold_joint.png -------------------------------------------------------------------------------- /static/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/images/up-arrow.png -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /static/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/jquery.easing.min.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/jquery.magnific-popup.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/morphext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/morphext.min.js -------------------------------------------------------------------------------- /static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/popper.min.js -------------------------------------------------------------------------------- /static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/scripts.js -------------------------------------------------------------------------------- /static/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/swiper.min.js -------------------------------------------------------------------------------- /static/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/js/validator.min.js -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/Individual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/templates/Individual.html -------------------------------------------------------------------------------- /templates/Joint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/templates/Joint.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/jointreport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/templates/jointreport.html -------------------------------------------------------------------------------- /templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikunal95/loan-default-prediction/HEAD/templates/report.html --------------------------------------------------------------------------------