Questions
In each chapter, you will find a couple of questions to help you conduct a knowledge check regarding the topics that have been discussed in each chapter:
- You are using
TabularExplainer
to interpret a sklearnDecisionTreeClassifier
. Which underlying SHAP explainer will be used?a.
DecisionTreeExplainer
b.
TreeExplainer
c.
KernelExplainer
d.
LinearExplainer
- You want to interpret a sklearn
DecisionTreeClassifier
usingMimicExplainer
. Which of the following models can you use for theexplainable_model
parameter?a.
LGBMExplainableModel
b.
LinearExplainableModel
c.
SGDExplainableModel
d.
DecisionTreeExplainableModel
e. All of the above
- Can you use
PFIExplainer
to produce local feature importance values?a. Yes
b. No