SunnyCat2013 / iml_methods_limitations

Seminar on Limitations of Interpretable Machine Learning Methods

Home Page:https://compstat-lmu.github.io/iml_methods_limitations/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Limitations of Interpretable Machine Learning Methods

This project explains the limitations of current approaches in interpretable machine learning, such as partial dependence plots (PDP, Accumulated Local Effects (ALE), permutation feature importance, leave-one-covariate out (LOCO) and local interpretable model-agnostic explanations (LIME). All of those methods can be used to explain the behavior and predictions of trained machine learning models. The interpretation methods might not work well in the following cases:

  • if a model models interactions (e.g. when a random forest is used)
  • if features strongly correlate with each other
  • if the model does not correctly model causal relationships
  • if parameters of the interpretation method are not set correctly

How this book came about

This book is the result of a student seminar for Master Statistics and Master Data Science at the LMU in the summer semester 2019. Each student in the seminar wrote about a specific limitation of an interpretable machine learning method.

How to build the book

Step 0: Prerequisites

Make sure you have git and R up and running on your computer.

Step 1: Clone the repository to your machine

With RStudio: https://support.rstudio.com/hc/en-us/articles/200532077-Version-Control-with-Git-and-SVN

With command-line:

git clone git@github.com:compstat-lmu/iml_methods_limitations.git

Step 2: Install dependencies

Start R in the project folder:

install.packages("devtools")
devtools::install_dev_deps()

Step 3: Render the book (R commands)

# HTML
bookdown::render_book('./', 'bookdown::gitbook')
# PDF
bookdown::render_book('./', 'bookdown::pdf_book')

About

Seminar on Limitations of Interpretable Machine Learning Methods

https://compstat-lmu.github.io/iml_methods_limitations/


Languages

Language:R 79.6%Language:TeX 19.9%Language:Shell 0.4%Language:CSS 0.1%Language:Makefile 0.0%