Random Forest: Notes and Interview Questions
What is bias? What is variance? Bias is the difference between the average prediction of our model and the correct value which we are trying to predict. For high bias the difference is high, and for low bias it's low. Model with high bias always leads to high error on training and test data. High bias would cause an algorithm to miss relevant relations between the input features and the target outputs. This is sometimes referred to as underfitting. Low Bias: Suggests fewer assumptions about the form of the target function. High-Bias: Suggests more assumptions about the form of the target function. Examples of low-bias: Decision Trees, k-Nearest Neighbors, Support Vector Machines. Examples of high-bias: Linear Regression, Linear Discriminant Analysis, Logistic Regression. Variance is the value that tells us about the spread of our data. High variance means the predicted values are more scattered in relation to each other, and low variance means less scattered. Model with high varian...