🎨
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?

Types of Explainability Techniques

Explainability Techniques are classified into multiple groups based on different elements. The book concentrates on the implementation of explainable techniques on different types of systems and data set types. Based on the type of data and type of model the techniques can be divided into three.

Classical Explainability

These are the techniques that are applied to classical machine learning algorithms which apply to tabular datasets.

Computer Vision Explainability

These are the techniques that are applied to Computer Vision algorithms for image datasets.

Natural Language Explainability

These are the techniques used for explaining the algorithms working on textual datasets.

PreviousExplainable systems and Black box systemsNextExplainable Models

Last updated 3 years ago

Was this helpful?