<?xml version="1.0" encoding="UTF-8"?>
<record
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd"
    xmlns="http://www.loc.gov/MARC21/slim">

  <leader>04460    a2200169   4500</leader>
  <controlfield tag="005">20241018124752.0</controlfield>
  <controlfield tag="008">241018b        |||||||| |||| 00| 0 eng d</controlfield>
  <datafield tag="020" ind1=" " ind2=" ">
    <subfield code="a">9789355428370</subfield>
  </datafield>
  <datafield tag="041" ind1=" " ind2=" ">
    <subfield code="a">English</subfield>
  </datafield>
  <datafield tag="100" ind1=" " ind2=" ">
    <subfield code="a">Molnar C.</subfield>
    <subfield code="9">208596</subfield>
  </datafield>
  <datafield tag="245" ind1=" " ind2=" ">
    <subfield code="a">Interpretable Machine Learning</subfield>
    <subfield code="b">:A Guide For Making Black Box Models Explainable</subfield>
  </datafield>
  <datafield tag="250" ind1=" " ind2=" ">
    <subfield code="a">2nd</subfield>
  </datafield>
  <datafield tag="260" ind1=" " ind2=" ">
    <subfield code="b">SPD</subfield>
    <subfield code="c">2024</subfield>
  </datafield>
  <datafield tag="300" ind1=" " ind2=" ">
    <subfield code="a">317</subfield>
  </datafield>
  <datafield tag="520" ind1=" " ind2=" ">
    <subfield code="a">Contents
Preface by the Author ix
1 Introduction 1
1.1 Story Time . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2 What Is Machine Learning? . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.3 Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2 Interpretability 13
2.1 Importance of Interpretability . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.2 Taxonomy of Interpretability Methods . . . . . . . . . . . . . . . . . . . . . . 18
2.3 Scope of Interpretability . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
2.4 Evaluation of Interpretability . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
2.5 Properties of Explanations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
2.6 Human-friendly Explanations . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
3 Datasets 31
3.1 Bike Rentals (Regression) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
3.2 YouTube Spam Comments (Text Classification) . . . . . . . . . . . . . . . . . 32
3.3 Risk Factors for Cervical Cancer (Classification) . . . . . . . . . . . . . . . . 33
4 Interpretable Models 35
4.1 Linear Regression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
4.2 Logistic Regression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
4.3 GLM, GAM and more . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
4.4 Decision Tree . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
4.5 Decision Rules . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
4.6 RuleFit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
4.7 Other Interpretable Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
5 Model-Agnostic Methods 109
6 Example-Based Explanations 113
7 Global Model-Agnostic Methods 115
7.1 Partial Dependence Plot (PDP) . . . . . . . . . . . . . . . . . . . . . . . . . . 116
7.2 Accumulated Local Effects (ALE) Plot . . . . . . . . . . . . . . . . . . . . . . 122
7.3 Feature Interaction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 140
7.4 Functional Decomposition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 147
v
vi Contents
7.5 Permutation Feature Importance . . . . . . . . . . . . . . . . . . . . . . . . . 157
7.6 Global Surrogate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
7.7 Prototypes and Criticisms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
8 Local Model-Agnostic Methods 179
8.1 Individual Conditional Expectation (ICE) . . . . . . . . . . . . . . . . . . . . 180
8.2 Local Surrogate (LIME) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
8.3 Counterfactual Explanations . . . . . . . . . . . . . . . . . . . . . . . . . . . 194
8.4 Scoped Rules (Anchors) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 205
8.5 Shapley Values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 215
8.6 SHAP (SHapley Additive exPlanations) . . . . . . . . . . . . . . . . . . . . . 227
9 Neural Network Interpretation 241
9.1 Learned Features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 243
9.2 Pixel Attribution (Saliency Maps) . . . . . . . . . . . . . . . . . . . . . . . . 254
9.3 Detecting Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 265
9.4 Adversarial Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 270
9.5 Influential Instances . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 279
10 A Look into the Crystal Ball 295
10.1 The Future of Machine Learning . . . . . . . . . . . . . . . . . . . . . . . . . 296
10.2 The Future of Interpretability . . . . . . . . . . . . . . . . . . . . . . . . . . . 298
11 Contribute to the Book 301
12 Citing this Book 303
13 Translations 305
14 Acknowledgements 307</subfield>
  </datafield>
  <datafield tag="942" ind1=" " ind2=" ">
    <subfield code="c">BK</subfield>
  </datafield>
  <datafield tag="999" ind1=" " ind2=" ">
    <subfield code="c">359833</subfield>
    <subfield code="d">359833</subfield>
  </datafield>
  <datafield tag="952" ind1=" " ind2=" ">
    <subfield code="0">0</subfield>
    <subfield code="1">0</subfield>
    <subfield code="2">ddc</subfield>
    <subfield code="4">0</subfield>
    <subfield code="7">0</subfield>
    <subfield code="a">CCEP</subfield>
    <subfield code="b">CCEP</subfield>
    <subfield code="d">2024-10-11</subfield>
    <subfield code="e">115</subfield>
    <subfield code="g">1087.50</subfield>
    <subfield code="l">0</subfield>
    <subfield code="o">006.31 MOL</subfield>
    <subfield code="p">CCEP-BK-67497</subfield>
    <subfield code="r">2024-10-11 00:00:00</subfield>
    <subfield code="v">1450.00</subfield>
    <subfield code="w">2024-10-11</subfield>
    <subfield code="y">BK</subfield>
  </datafield>
</record>
