IML and AutoML Flashcards

1
Q

Deep learning neural networks, support vector machines, random forests are examples of ___ box methods.

A

Black

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

Decision trees or linear regression models are examples of ____ box methods.

A

White or glass

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

En effect in which algorithms learn undesired correlations in
the data and thus make the correct prediction for the “wrong” reason.

A

“Clever-Hans-Effect”

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

A method that can be applied to any ML algorithm.

A

Model-agnostic method

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

A method that is only applicable to a specific ML algorithm.

A

Model-specific method

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

Which are the three explainable ML models.

A

-Decision trees
-Linear and logistic regression models
-Nearest neighbor approach

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

What does LIME stand for?

A
  • Local: only valid for the local neighborhood of an observation
  • Interpretable: human understandable
  • Model-Agnostic: applicable to all ML algorithms
  • Explanations: provides explanations.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

(True or false) In the end LIME produces a much simpler surrogate model based on the ‘local neighbors’ created
above.

A

True

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

Global agnostic method that analyzes the causal relation the features have on the prediction, then chooses a variable and fix it to a certain value for all observations and finally observes how that impacts the prediction.

A

Partial Dependence Plots (PDP)

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

Global agnostic method that measures the difference in the prediction when a variable is permuted but instead of changing a value in all observations it is restricted to local (or similar) observations.

A

Accumulated Local Effects (ALE)

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

Local agnostic method that shows the behavior of (every) observation and centers observations at zero.

A

Individual Conditional Expectation (ICE)

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

Local agnostic method that uses Shapley values as building blocks.

A

Shapley values

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

It aims to provide an end-to-end system to solve ML problems for a given training data set, automatically configure an ML model (or: pipeline) that solves the task well.

A

AutoML

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

(True or false) AutoML is rooted in HPO.

A

True

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

A high-dimensional HPO problem: Union of all algorithm’s HPs, plus a new HP that controls the chosen algorithm.

A

CASH (Combined Algorithm Selection and Hyperparameter Optimization)

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

To try to find good initial solutions from experience with other data sets.

A

Meta learning

17
Q

To train multiple learners and aggregate their individual predictions.

A

Ensembling