...

/

Case Study: Local Explanations for Classification Problem

Case Study: Local Explanations for Classification Problem

Learn how to explain individual model decisions using the LIME framework for a classification case study.

In this lesson, we’ll build a predictive classification model on the loan approval dataset. We train a machine learning model to predict loan approval decisions. Then, we’ll explain the model prediction on individual examples using the LIME framework.

LIMELIME

Train a classification model to predict loan approval decisions

Let’s use the credit loan dataset to train a machine learning model that predicts the propensity to approve loans.

The problem statement here is to predict the propensity to approve the loan, and we have a ...