In: Computer Science
Which best describes how a decision tree performs classification on a given example?
A) Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when leaf node is reached.
B) Starting at root, select the tree branch that maximizes information gain. Stop when lead node is reached.
C) Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when entropy is 0.
D) Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when entropy is 1.
Correct options are (A) and (C), explanation for each option is given below :
Option (A) : Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when leaf node is reached.
EXPLANATION :
Option(B) : Starting at root, select the tree branch that maximizes information gain. Stop when lead node is reached.
EXPLANATION :
Option (C) : Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when entropy is 0.
EXPLANATION :
Option (D) : Starting at root, evaluate the binary decision to determine which tree branch to go to next. Stop when entropy is 1.
EXPLANATION :
So,both the options , (A) and (C) are correct in the given circumstances.