Skip to content

The project entails building a model that predicts if someone who seeks a loan might be a defaulter or a non-defaulter. We have several independent variables like, checking account balance, credit history, purpose, loan amount etc. Ensemble Models such as Bagging, AdaBoosting, GradientBoost, XGBoost, Random Forest etc will be used for the modelling

Notifications You must be signed in to change notification settings

stankovix/Loan-Prediction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Loan Prediction

The project entails building a model using python programming language that predicts if someone who seeks a loan might be a defaulter or a non-defaulter. We have several independent variables like, checking account balance, credit history, purpose, loan amount etc. Ensemble Models such as Bagging, AdaBoosting, GradientBoost, XGBoost, Random Forest etc will be used for the modelling

Authors

Installation

Kindly take note of the following libaries and models below:

  
import warnings
warnings.filterwarnings("ignore")

IMPORT THE FOLLOWING LIBRARIES:

import pandas as pd
import numpy as np
from sklearn import metrics
import matplotlib.pyplot as plt
%matplotlib inline 
import seaborn as sns
from sklearn.model_selection import train_test_split
from sklearn.tree import DecisionTreeClassifier
#from sklearn.feature_extraction.text import CountVectorizer  #DT does not take strings as input for the model fitting step

Documentation

STEPS TAKEN IN THIS PROJECT:

  1. Data Collection
  2. Data Preprocessing
  3. Exploratory Data Analysis (EDA)
  4. Feature Engineering
  5. Data Split (Test and Train)
  6. Model Selection
  7. Model Evaluation
  8. Model Fine-Tuning
  9. Final Model Testing

Logo

About

The project entails building a model that predicts if someone who seeks a loan might be a defaulter or a non-defaulter. We have several independent variables like, checking account balance, credit history, purpose, loan amount etc. Ensemble Models such as Bagging, AdaBoosting, GradientBoost, XGBoost, Random Forest etc will be used for the modelling

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published