week 5 Flashcards

1
Q

explainable AI

A

interpretable (white-box model, can explain the algorithm behind) vs explainable (explain why it works without going into details of the model, which are esoteric anyway)(ad-hoc)
model-based vs model-free(model-agnostic)
local (explain one instance) vs global(all data instances)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

decision tree

A

interpretable, model-based, local

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

permutation importance

A

permute a feature - high loss => important feature, low loss => unimportant feature, show loss discrepancy
global, model-free, explainable(feature summary)
tricky with correlated features, compute on test data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

counterfactual

A

explain minimal feature changes that change the prediction
“if x had not happened, then y would have not changed”
local, model-free, explainable(example-based)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

LIME

A

fit a linear model for a single data instance by perturbing it, use weights of linear model to explain the most relevant features
local, model-free, explainable(surrogate)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly