L5 - Regression - Model Complexity Flashcards

1
Q

What is the relationship between model complexity (polynomial degree) and the error?

A

As the polynomial degree increases, the error decreases.

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

What happens if the regression model complexity is too high?

A

The model becomes overfit. This means the model learns the data as opposed to the underlying patterns of the data.

Thus the model will perform poorly on unseen data.

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

What is cross-validation?

A

A technique to detect model overfitting.

Trains and tests the model on subsets of the data, and provides an error value of the model.

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

How do we know if our model is at ideal complexity?

A

When the cross-validation error is at its lowest.

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

If your regression equation has too high polynomial degree, what can this lead to? What about too low?

A

Too high - Overfitting
Too low - Underfitting

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

When running K-fold cross validation, what does it tell us when the C-V error starts to increase again?

A

That we have found the optimal model complexity.

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