Loan Approval dataset is a popular Kaggle dataset for whether loan would be approved or not based on the loan details such as the loan amount, loan term etc. as well as the loan borrower's detail such as annual income, number of dependents etc. This Model works on the above mentioned dataset and predicts whether or not the loan would be approved.
This project is entirely done on jupyter notebook in python. I have used the following python libraries :
pandas
to read and visualize the datasklearn.preprocessing.StandardScaler
for feature scalingsklearn.svm
for model selection
Steps to implement the project
- Open google colab or jupyter notebook.
- Either download the source code or copy the codes to a new .py file or new .ipynb file
- run the codes
It uses Suport vector machine classifier to classify loan_status column based on the dependent columns.The model is 94% accurate.