Decision Trees Report
Decision Trees Report
1-In the beginning, the whole training set is considered as the root.
2-Feature values are preferred to be categorical. If the values are continuous, then they are
discretized prior to building the model.
4-The order of placing attributes as the root or internal node of the tree is done by using
some statistical approach.
How does the Decision Tree algorithm work?
Pros
Cons
A binary decision tree is a type of decision tree where each internal node has exactly two child nodes, which
correspond to the two possible outcomes of a binary decision.
The tree is constructed by recursively partitioning the input space into two regions based on the value of a
chosen feature at each internal node until a stopping criterion is met.
Binary decision trees are commonly used in classification tasks, where the goal is to assign a discrete label
to an input based on its features.
On the other hand, a multiple decision tree, also known as a multiclass decision tree, is a decision tree that
can handle more than two classes.
A multiple decision tree, also known as a multiclass decision tree, is a decision tree that can handle more
than two classes. In other words, each internal node can have more than two child nodes, each
corresponding to a different class or outcome.
The tree is constructed by recursively partitioning the input space into multiple regions based on the value
of a chosen feature at each internal node until a stopping criterion is met.
Multiple decision trees are commonly used in classification tasks where the goal is to assign a label to an
input based on its features.