
















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An introduction to decision trees as a representation of classifiers in machine learning. The concept of classifiers, supervised learning, and decision trees as a particular type of classifier. Three examples of decision tree applications are given: medical diagnosis, plant eating robot, and digit recognition. The document also explains the process of classification with decision trees and discusses considerations for designing a learning algorithm, including feature construction, feature selection, selecting a representation, model selection, and selecting an algorithm.
Typology: Study notes
1 / 24
This page cannot be seen from the preview
Don't miss anything!

















( x 1 ,…, xm) Classifier y’
Decision trees are a particular representation of a classifier. Node: feature to branch on Edge: value of a feature Leaf: prediction
Example Xj: binary feature Y = { N utritious, P oisonous} (^7)
Classification With Decision Trees X 1 F T X 2 F T N P
To classify x =(T,F,T,F)
Classification With Decision Trees
Begin at root.
Check value of x 1.
To classify x =(T,F,T,F) X 1
F T X 2 F T N P
Classification With Decision Trees
Begin at root.
Check value of x 1.
Follow T branch.
To classify x =(T,F,T,F) X 1
F T X 2 F T N P
Classification With Decision Trees
Begin at root.
Check value of x 1.
Follow T branch.
Check value of x 4.
Follow F branch.
To classify x =(T,F,T,F) X 1
F T X 2 F T N P
Classification With Decision Trees
Begin at root.
Check value of x 1.
Follow T branch.
Check value of x 4.
Follow F branch.
Return class (P)oisonous.
To classify x =(T,F,T,F) X 1
F T X 2 F T N P