Decision Trees - Pres
Decision Trees - Pres
Decision
Trees
(Supervised Learning
Algorithms)
Mutayyab Zubair
Decision Trees
01 02
A DECISION TREE IS A TYPE OF ITS STRUCTURES
SUPERVISED LEARNING DECISIONS BASED ON
ALGORITHM THAT IS INPUT DATA, MAKING IT
COMMONLY USED IN MACHINE
LEARNING TO MODEL AND SUITABLE FOR BOTH
PREDICT OUTCOMES BASED CLASSIFICATION AND
ON INPUT DATA. REGRESSION TASKS
Key Concepts of Decision Trees
1. Nodes and Edges
2. Splitting
3. Criteria for Splitting
4. Pruning
5. Advantages and Disadvantages
Nodes and Edges
o Root Node: The top node of the tree representing the
entire dataset, which is then split into subsets.
o Internal Nodes: Nodes that represent feature tests and
have one or more branches (edges).
o Leaf Nodes: Terminal nodes that represent the final
output or class labels for classification tasks or continuous
values for regression tasks.
Splitting: