Project idea – The idea behind this ML project is to build a model for a Home Loan Company to validates the customer eligibility for loan.
Problem Statement or Business Problem
About Company Wonderful Dream Housing Finance company deals in all home loans. They have presence across all urban, semi urban and rural areas. Customer first apply for home loan after that company validates the customer eligibility for loan.
Problem Company wants to automate the loan eligibility process (real time) based on customer detail provided while filling online application form. These details are Gender, Marital Status, Education, Number of Dependents, Income, Loan Amount, 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 specifically target these customers. Here they have provided a partial data set.
Attribute Information or Dataset Details:
Variable – Description
Loan_ID – Unique Loan ID
Gender – Male/ Female
Married – Applicant married (Y/N)
Dependents – Number of dependents
Education – Applicant Education (Graduate/ Under Graduate)
Self_Employed – Self employed (Y/N)
ApplicantIncome – Applicant income
CoapplicantIncome – Coapplicant income
LoanAmount – Loan amount in thousands
Loan_Amount_Term – Term of loan in months
Credit_History – credit history meets guidelines
Property_Area – Urban/ Semi Urban/ Rural
Loan_Status – Loan approved (Y/N)
Technology Used
Apache Spark
Spark SQL
Apache Spark MLLib
Scala
DataFrame-based API
Databricks Notebook
Introduction
Welcome to this project on predict whether a customer is eligible for Home loan or not in Apache Spark Machine Learning using Databricks platform community edition server which allows you to execute your spark code, free of cost on their server just by registering through email id.
In this project, we explore Apache Spark and Machine Learning on the Databricks platform.
I am a firm believer that the best way to learn is by doing. That’s why I haven’t included any purely theoretical lectures in this tutorial: you will learn everything on the way and be able to put it into practice straight away. Seeing the way each feature works will help you learn Apache Spark machine learning thoroughly by heart.
We’re going to look at how to set up a Spark Cluster and get started with that. And we’ll look at how we can then use that Spark Cluster to take data coming into that Spark Cluster, a process that data using a Machine Learning model, and generate some sort of output in the form of a prediction. That’s pretty much what we’re going to learn about the predictive model.
In this project, we will be performing prediction on eligibility of Home loan.
We will learn:
Preparing the Data for Processing.
Basics flow of data in Apache Spark, loading data, and working with data, this course shows you how Apache Spark is perfect for a Machine Learning job.
Learn the basics of Databricks notebook by enrolling in Free Community Edition Server
Define the Machine Learning Pipeline
Train a Machine Learning Model
Testing a Machine Learning Model
Evaluating a Machine Learning Model (i.e. Examine the Predicted and Actual Values)
The goal is to provide you with practical tools that will be beneficial for you in the future. While doing that, you’ll develop a model with a real use opportunity.
I am really excited you are here, I hope you are going to follow all the way to the end of the Project. It is fairly straight forward fairly easy to follow through the article we will show you step by step each line of code & we will explain what it does and why we are doing it.
val indexer = new StringIndexer()
.setInputCol("category")
.setOutputCol("categoryIndex")
val indexed = indexer.fit(df).transform(df)
display(indexed)
Define the Pipeline
A predictive model often requires multiple stages of feature preparation.
A pipeline consists of a series of transformer and estimator stages that typically prepare a DataFrame for modeling and then train a predictive model.
In this case, you will create a pipeline with stages:
A StringIndexer estimator that converts string values to indexes for categorical features A VectorAssembler that combines categorical features into a single vector
It is common practice when building machine learning models to split the source data, using some of it to train the model and reserving some to test the trained model. In this project, you will use 70% of the data for training, and reserve 30% for testing.
%scala
val splits = LoanFinalDF.randomSplit(Array(0.7, 0.3))
val train = splits(0)
val test = splits(1)
val train_rows = train.count()
val test_rows = test.count()
println("Training Rows: " + train_rows + " Testing Rows: " + test_rows)
Prepare the Training Data
To train the Classification model, you need a training data set that includes a vector of numeric features, and a label column. In this project, you will use the VectorAssembler class to transform the feature columns into a vector, and then rename the Loan Status column to the label.
VectorAssembler()
VectorAssembler(): is a transformer that combines a given list of columns into a single vector column. It is useful for combining raw features and features generated by different feature transformers into a single feature vector, in order to train ML models like logistic regression and decision trees.
VectorAssembler accepts the following input column types: all numeric types, boolean type, and vector type.
In each row, the values of the input columns will be concatenated into a vector in the specified order.
val assembler = new VectorAssembler().setInputCols(Array("Loan_ID_indexed", "Gender_indexed", "Married_indexed", "Dependents_indexed", "Education_indexed",
"Self_Employed_indexed", "ApplicantIncome", "CoapplicantIncome", "LoanAmount", "Loan_Amount_Term", "Credit_History","Property_Area_indexed")).setOutputCol("features")
val training = assembler.transform(train).select($"features", $"Loan_Status_indexed".alias("label"))
training.show(false)
Train a Classification Model
Next, you need to train a Classification model using the training data. To do this, create an instance of the LogisticRegression algorithm you want to use and use its fit method to train a model based on the training DataFrame. In this project, you will use a Logistic Regression Classifier algorithm – though you can use the same technique for any of the regression algorithms supported in the spark.ml API
val lr = new LogisticRegression().setLabelCol("label").setFeaturesCol("features").setMaxIter(10) .setRegParam(0.3)
val model = lr.fit(training)
println("Model Trained!")
Prepare the Testing Data
Now that you have a trained model, you can test it using the testing data you reserved previously. First, you need to prepare the testing data in the same way as you did the training data by transforming the feature columns into a vector. This time you’ll rename the Loan_Status_indexed column to trueLabel.
%scala
val testing = assembler.transform(test).select($"features", $"Loan_Status_indexed".alias("trueLabel"))
testing.show(false)
Test the Model
Now you’re ready to use the transform method of the model to generate some predictions. You can use this approach to predict the loan status; but in this case, you are using the test data which includes a known true label value, so you can compare the loan status
%scala
val prediction = model.transform(testing)
val predicted = prediction.select("features", "prediction", "trueLabel")