Bias, Variance, Underfitting, Overfitting Flashcards

1
Q

Overfitting

A

Occurs when the model fits the data too well and captures the noise of the data. It then becomes difficult for the model to generalize to new examples that were not in the training set.

The model shows low bias and high variance.

Often the result of a too complex model.

Using more data is the simplest and best possible way to prevent overfitting

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

Underfitting

A

Occurs when a model cannot capture the underlying trend of the data and does not fit the data well enough.

The model shows low variance but high bias.

Often a result of an excessively simple model.

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

Bias

A

“Bias is the algorithm’s tendency to consistently learn the wrong thing by not taking into account all the information in the data (underfitting).”

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

Variance

A

“Variance is an error from the sensitivity to small fluctuations in the training set. High variance can cause an algorithm to model the random noise in the training data, rather than the intended outputs (overfitting).”

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