Loan Eligibility Prediction: Machine Learning
Loan Eligibility Prediction: Machine Learning
Machine Learning
Loans are the core business of banks. The main profit comes directly from the loan’s
interest. The loan companies grant a loan after an intensive process of verification and
validation.
However, they still don’t have assurance if the applicant is able to repay the loan with
no difficulties. In this tutorial, we’ll build a predictive model to predict if an applicant
is able to repay the lending company or not. We will prepare the data using Jupyter
Notebook and use various models to predict the target variable.
Language
We will be using Python for this course along with the below-listed libraries.
Python
Pandas
Seaborn
sklearn
Data
For this problem, we have three CSV files: train, test, and sample submission.
Train file will be used for training the model, i.e. our model will learn from this file. It
contains all the independent variables and the target variable.
Test file contains all the independent variables, but not the target variable. We will
apply the model to predict the target variable for the test data.
Sample submission file contains the format in which we have to submit out predictions
Model Building
urban and rural areas. Customer first apply for a loan after that company validates
The Company wants to automate the loan eligibility process (real time) based on
customer detail provided while filling online application form. These details are
Credit History and others. To automate this process, they have given a problem to
identify the customers segments, those are eligible for loan amount so that they can
In this project We’ve gone through a good portion of the data science pipe such as
preprocessing and modeling and we’ve used essential classification models such as
Logistic regression , Decision tree and Random forests.
It includes mathematical techniques and processes that are applied to historical data to
study correlations, identify trends and predict possible outcomes by quantifying the
uncertainty and the characteristics of the variation.