1.

The model is suffering from low bias and high variance. What approach should be used to tackle this scenario and why?

Answer»

There are three types of error in any machine learning approach. They are a biased error, variance error, and irreducible error. Generally, the focus is to look at STRIKING a balance between bias and variance and reducing those errors in the model so that accuracy can be improved.

Low Bias - indicates fewer assumptions about the form of the target VARIABLE or function. In this case, when we TEST on new data, it does not give expected results and accuracy can be compromised.

High variance - indicates large changes to the estimate of target variable or target function with changes to the training data.

It is always tricky to handle scenario to balance between these two as increasing the bias will decrease the variance and increasing the variance will decrease the bias. Hence approach that can be followed are as follows:

  1. Look at the dataset in hand and contextual information to suggest which way to look at for a better prediction performance
  2. Typically kNN and SVM algorithms can be looked at depending on what problem we are solving and how tweaks can be performed in ORDER to manage this EFFECT


Discussion

No Comment Found

Related InterviewSolutions