Relation

Decision Tree Disadvantages

  1. Over fitting - Can create over-complex trees that do not generalize the data well. This problem gets solved by setting constraints on model parameters and pruning.
  2. Not fit for continuous variables - While working with continuous numerical variables, decision tree loses information, when it categorizes variables in different categories.
  3. Generally low accuracy compared to other ML algorithms
  4. Potentially unstable - because small variations in the data might result in a completely different tree being generated. This is called variance, which needs to be lowered by methods like bagging and boosting.

Source: medium.com/greyatom/decision-trees-a-simple-way-to-visualize-a-decision-dc506a403aeb

0

6

Updated 2020-04-09

Tags

Data Science