Decision Trees Flashcards
(True or False) Decision trees can be used for both classification and regression problems.
True
(True or False) Decision trees are not an ingredient of random forests (bagging) or xgboost (boosting) machine learning algorithms.
False
Name given to the set of observations before first decision of a decision tree.
Roots
Name given to the set of observations after last decision of a decision tree.
Leafs
Name given to the decisions in a decision tree.
Branches
Name given to the decisions in a decision tree.
Branches
It is the approach that progresses from roots to leaves.
Greedy top-down-approach
Pruning is used to avoid _____ .
Overfitting
(True or false) Decision trees are pruned from root to leaf.
False. They are pruned from leaf to root always.
(True or false) Pruning a tree will increase its apparent error rate for the training data.
True
They prevent the tree from creating too small leafs.
Stopping rules