Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kshitijshrivastava1903/neural_network_analysis_on_lending_club-dataset

Used tensorflow's neural network model to predict whether or not a person pays back a loan on the basis of his historical data and personal details of 3.9 lakh people like interest rate, employment details, address, etc.
https://github.com/kshitijshrivastava1903/neural_network_analysis_on_lending_club-dataset

deep-learning dropout-keras earlystopping keras-tensorflow matplotlib-pyplot neural-networks numpy pandas seaborn tensorflow-models

Last synced: 13 days ago
JSON representation

Used tensorflow's neural network model to predict whether or not a person pays back a loan on the basis of his historical data and personal details of 3.9 lakh people like interest rate, employment details, address, etc.

Awesome Lists containing this project

README

        

# Predict whether a person will pay back your loan on the basis of his/her historical data.
Used tensorflow's neural network model to predict whether or not a person pays back a loan on the basis of his historical data and personal details of around 4 lakh people, like employment details, address, loan amount, etc.

LENDING CLUB is a US peer-to-peer lending company, headquartered in San Francisco, California. It was the first peer-to-peer lender to register its offerings as securities with the Securities and Exchange Commission (SEC), and to offer loan trading on a secondary market. LendingClub is the world's largest peer-to-peer lending platform.

Our Goal:
Given historical data on loans given out with information on whether or not the borrower defaulted (charge-off), I built a model that can predict wether or nor a borrower will pay back their loan. This way in the future when we get a new potential customer we can assess whether or not they are likely to pay back the loan.

Done a lot of exploratory data analysis, feature engineering, data cleaning and created a dense neural network using dropout
layers, and plotted out the loss on training data and testing data to prevent overfitting of data and finding optimal solution.