Skip to content

Commit

Permalink
Update 4-explainability-vs-interpretability.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dekun-zhou authored Jun 19, 2024
1 parent f522203 commit 079be1f
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions episodes/4-explainability-vs-interpretability.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,34 @@
---
title: "Explainability versus interpretability"
title: "Interpretablility versus explainability"
teaching: 0
exercises: 0
---

:::::::::::::::::::::::::::::::::::::: questions

- TODO
- TODO
- TODO
- What are popular machine learning models?
- What are model intepretability and model explainability? Why are they important?
- Which should you choose: interpretable models or explainable models?

::::::::::::::::::::::::::::::::::::::::::::::::

::::::::::::::::::::::::::::::::::::: objectives

- TODO
- TODO
- TODO
- Showcase machine learning models that are widely used in practice.
- Understand and distinguish between explainable machine learning models and interpretable machine learning models.
- Describe two reasons when deciding which model to choose.

::::::::::::::::::::::::::::::::::::::::::::::::

::::::::::::::::::::::::::::::::::::: keypoints

- TODO
- TODO
- TODO
- **Model Explainability vs. Model Interpretability:**
- **Interpretability:** Refers to the degree to which a human can understand the cause of a decision made by a model. It is essential for verifying the correctness of the model, ensuring compliance with regulations, and enabling effective debugging.
- **Explainability:** Refers to the extent to which the internal mechanics of a machine learning model can be explained in human terms. It is crucial for understanding how models make decisions, ensuring transparency, and building trust with stakeholders.


- **Choosing Between Explainable and Interpretable Models:**
- **When Transparency is Critical:** Opt for interpretable models (e.g., linear regression, decision trees) when it is essential to have a clear understanding of how decisions are made, such as in healthcare or finance.
- **When Performance is a Priority:** Choose explainable models (e.g., neural networks, gradient boosting machines) when predictive accuracy is the primary concern, and you can use explanation methods to understand model behavior.

::::::::::::::::::::::::::::::::::::::::::::::::

0 comments on commit 079be1f

Please sign in to comment.