Decision Trees Flashcards
1
Q
What type of nodes are decision trees made of?
A
Internal nodes (squares)
Leaf nodes (ovals)
2
Q
How do you classify a new example?
A
Push it down the tree until it reaches a leaf node
3
Q
What are the basic ideas of decision tree induction?
A
they are built in a top-down fashion
Recursive-Learning(T, A) - T is a set of training examples, and A is a set of attributes
4
Q
A