Applied Machine Learning I
Applied Machine Learning I
10
Applied ML I... Nwachukwu Victor
Decision Tree Terminologies
• Root Node: A decision tree’s root node, which represents the original choice or
feature from which the tree branches, is the highest node.
• Internal Nodes (Decision Nodes): Nodes in the tree whose choices are
determined by the values of particular attributes. There are branches on these
nodes that go to other nodes.
• Leaf Nodes (Terminal Nodes): The branches’ termini, when choices or forecasts
are decided upon. There are no more branches on leaf nodes.
• Branches (Edges): Links between nodes that show how decisions are made in
response to particular circumstances.
• Parent Node: A node that is split into child nodes. The original node from which a
split originates.
Cons
Complex
Computationally Intensive
Memory Usage
Applied ML I... Nwachukwu Victor 21
Support Vector Machine (SVM) Algorithm
Where is
a linear combination of the input
features and the model
parameters (coefficients)
Apply the logistic function to obtain Classify the instance based on the
probabilities: decision rule (e.g threshold at 0.5)
3. Use an optimization algorithm to
maximize the likelihood function and
find the optimal parameters
Applied ML I... Nwachukwu Victor 29