Computer Science, asked by yunasti21, 2 months ago

6.1 Briefly outline the major steps of decision tree classification.?

Answers

Answered by aaditya172021
1

Answer:A Decision Tree is a simple representation for classifying examples. It is a Supervised Machine Learning where the data is continuously split according to a certain parameter.

Decision Tree consists of :

Nodes : Test for the value of a certain attribute.

Edges/ Branch : Correspond to the outcome of a test and connect to the next node or leaf.

Leaf nodes : Terminal nodes that predict the outcome (represent class labels or class distribution).

Explanation:

Similar questions