Chapter 6 The Bias-Variance Trade-Off Flashcards
HOW CAN WE BREAK DOWN THE PREDICTION ERROR FOR ML ALGORITHMS? P28
Bias error, Variance error, Irreducible Error
The irreducible error is the error that we can not remove with our model, or with any model. The error is caused by elements outside our control, such as statistical noise in the observations. … usually called “irreducible noise” and cannot be eliminated by modeling.
WHAT DO LOW BIAS AND HIGH BIAS MEAN? GIVE SOME ML ALGORITHM EXAMPLES FOR EACH P29
Low Bias: Suggests less assumptions about the form of the target function. EXP: Decision Trees, K-Nearest Neighbors, SVM
High-Bias: Suggests more assumptions about the form of the target function. EXP: Linear Regression, Logistic Regression, Linear Discriminant Analysis
WHAT DO LOW VARIANCE AND HIGH VARIANCE MEAN? GIVE SOME ML ALGORITHM EXAMPLES FOR EACH P29
Low Variance: Suggests small changes to the estimate of the target function with changes to the training dataset. EXP: Linear Regression, Linear Discriminant Analysis and Logistic Regression
High Variance: Suggests large changes to the estimate of the target function with changes to the training dataset. EXP: Decision Trees, k-Nearest Neighbors and Support Vector Machines.