Decision Trees Flashcards

1
Q

(True or False) Decision trees can be used for both classification and regression problems.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

(True or False) Decision trees are not an ingredient of random forests (bagging) or xgboost (boosting) machine learning algorithms.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Name given to the set of observations before first decision of a decision tree.

A

Roots

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Name given to the set of observations after last decision of a decision tree.

A

Leafs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Name given to the decisions in a decision tree.

A

Branches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Name given to the decisions in a decision tree.

A

Branches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It is the approach that progresses from roots to leaves.

A

Greedy top-down-approach

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Pruning is used to avoid _____ .

A

Overfitting

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

(True or false) Decision trees are pruned from root to leaf.

A

False. They are pruned from leaf to root always.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

(True or false) Pruning a tree will increase its apparent error rate for the training data.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

They prevent the tree from creating too small leafs.

A

Stopping rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly