🎨
Explainable-AI
  • Explainable AI
  • Preface
  • How to use this book?
  • Contents
  • What is Explainable AI?
  • Why do we need Explainablity?
  • Explainable systems and Black box systems
  • Types of Explainability Techniques
  • Explainable Models
    • Linear Regression
      • Assumptions
      • Model
      • Statistical Interpretation
    • Decision Trees
      • How Do They Work?
      • Creating the model
      • Interpretation
  • Explainability Techniques for Classical ML
    • SHAP (SHapley Additive exPlanations)
    • Surrogate model
    • LIME (Local Interpretable Model-Agnostic Explanations)
    • PDP (Partial Dependence Plot)
    • ICE (Individual Conditional Expectation Plots)
    • ALE (Accumulated Local Effects Plot)
  • Datasets
    • Medical Cost Personal Dataset
    • Telecom Churn Dataset
    • Sales Opportunity Size Dataset
    • Pima Indians Diabetes Dataset
  • Implementation of these techniques on different models
    • Logistic Regression - SHAP
    • Random Forest - LIME
    • GBM - PDP
    • GBM - ICE
    • Deep Learning - Surrogate
  • Future scope
  • Contributors
  • Citing this Book
Powered by GitBook
On this page

Was this helpful?

Explainable Models

Machine learning Models

This book discusses two Explainable models

  1. Linear regression

  2. Decision Tree

Every machine learning engineer or data scientist learns these two models at the start of their career and every coursework will contain these two machine learning models as the fundamental models. The rationale behind this is they are easy to understand and learn from. These models make sense and people can easily connect them with their daily life.

There are cases where simple Explainable Machine Learning Models fail to give self-explanation. For example, when there is multi-collinearity or when there is an interaction effect among the features, the linear models fail to explain themselves and might need the help of some other methods to make them Explainable. We will explain how Linear models and Decision Trees are explainable and move on to other techniques to achieve interpretability in the later parts of this book.

PreviousTypes of Explainability TechniquesNextLinear Regression

Last updated 3 years ago

Was this helpful?