🎨
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
  • Types of AI system/Models
  • Explainable systems / White Box systems (models)
  • Black Box systems

Was this helpful?

Explainable systems and Black box systems

White Box vs Black Box

PreviousWhy do we need Explainablity?NextTypes of Explainability Techniques

Last updated 3 years ago

Was this helpful?

Types of AI system/Models

There are two types of AI systems that can be defined

  1. Explainable systems or White box systems

  2. Black Box systems

Explainable systems / White Box systems (models)

These are the AI systems or Models where one can easily map the input to the output. One knows what is happening during the training phase and how the system makes the appropriate choice.

Examples: Linear Regression and Decision Tree

Black Box systems

These are the AI systems or Models where one can not map the input to the output. You do not know what is happening within the system.

Example: Deep Learning and Computer Vision Models

White Box
Black Box