├── LICENSE ├── README.md ├── finding-documents ├── Credit Risk Modeling.pptx ├── Model Evaluation and Selection Report.pdf └── Readme.md ├── images ├── Feature importance.png ├── Lauki Finance.JPG ├── Lime.JPG ├── ROC Curve.png └── Readme.md ├── notebooks ├── cleaning and exploratory data analysis │ ├── Data_Cleaning_and_Exploratory_Data_Analysis_(EDA).ipynb │ └── Readme.md ├── data exploration │ ├── Data_Exploration_and_Familiarization.ipynb │ └── Readme.md └── feature engineering, model building and evaluation │ ├── Feature_Engineering_and_Model_Building.ipynb │ └── Readme.md └── project-root ├── Lauki Finance.JPG ├── Readme.md ├── main.py ├── model ├── model_data.pkl └── tuned_hyperparameters.txt ├── requirements.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/README.md -------------------------------------------------------------------------------- /finding-documents/Credit Risk Modeling.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/finding-documents/Credit Risk Modeling.pptx -------------------------------------------------------------------------------- /finding-documents/Model Evaluation and Selection Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/finding-documents/Model Evaluation and Selection Report.pdf -------------------------------------------------------------------------------- /finding-documents/Readme.md: -------------------------------------------------------------------------------- 1 | Get the finding files here... 2 | -------------------------------------------------------------------------------- /images/Feature importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/images/Feature importance.png -------------------------------------------------------------------------------- /images/Lauki Finance.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/images/Lauki Finance.JPG -------------------------------------------------------------------------------- /images/Lime.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/images/Lime.JPG -------------------------------------------------------------------------------- /images/ROC Curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/images/ROC Curve.png -------------------------------------------------------------------------------- /images/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notebooks/cleaning and exploratory data analysis/Data_Cleaning_and_Exploratory_Data_Analysis_(EDA).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/cleaning and exploratory data analysis/Data_Cleaning_and_Exploratory_Data_Analysis_(EDA).ipynb -------------------------------------------------------------------------------- /notebooks/cleaning and exploratory data analysis/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/cleaning and exploratory data analysis/Readme.md -------------------------------------------------------------------------------- /notebooks/data exploration/Data_Exploration_and_Familiarization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/data exploration/Data_Exploration_and_Familiarization.ipynb -------------------------------------------------------------------------------- /notebooks/data exploration/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/data exploration/Readme.md -------------------------------------------------------------------------------- /notebooks/feature engineering, model building and evaluation/Feature_Engineering_and_Model_Building.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/feature engineering, model building and evaluation/Feature_Engineering_and_Model_Building.ipynb -------------------------------------------------------------------------------- /notebooks/feature engineering, model building and evaluation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/notebooks/feature engineering, model building and evaluation/Readme.md -------------------------------------------------------------------------------- /project-root/Lauki Finance.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/Lauki Finance.JPG -------------------------------------------------------------------------------- /project-root/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/Readme.md -------------------------------------------------------------------------------- /project-root/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/main.py -------------------------------------------------------------------------------- /project-root/model/model_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/model/model_data.pkl -------------------------------------------------------------------------------- /project-root/model/tuned_hyperparameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/model/tuned_hyperparameters.txt -------------------------------------------------------------------------------- /project-root/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/requirements.txt -------------------------------------------------------------------------------- /project-root/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafiul-araf/Credit-Risk-Modeling-End-to-End-Project/HEAD/project-root/utils.py --------------------------------------------------------------------------------