Presentation is loading. Please wait.

Presentation is loading. Please wait.

CSE 446: Decision Trees Winter 2012 Slides adapted from Carlos Guestrin and Andrew Moore by Luke Zettlemoyer & Dan Weld.

Similar presentations


Presentation on theme: "CSE 446: Decision Trees Winter 2012 Slides adapted from Carlos Guestrin and Andrew Moore by Luke Zettlemoyer & Dan Weld."— Presentation transcript:

1 CSE 446: Decision Trees Winter 2012 Slides adapted from Carlos Guestrin and Andrew Moore by Luke Zettlemoyer & Dan Weld

2 Logistics PS 1 – due in two weeks – Did we already suggest that you … start early See website for reading 2

3 © Daniel S. Weld 3 Why is Learning Possible? Experience alone never justifies any conclusion about any unseen instance. Learning occurs when PREJUDICE meets DATA!

4 © Daniel S. Weld 4 Some Typical Biases – Occam’s razor “It is needless to do more when less will suffice” – William of Occam, died 1349 of the Black plague – MDL – Minimum description length – Concepts can be approximated by –... conjunctions of predicates... by linear functions... by short decision trees

5 5 Overview of Learning What is Being Learned? Type of Supervision (eg, Experience, Feedback) Labeled Examples RewardNothing Discrete Function ClassificationClustering Continuous Function Regression PolicyApprenticeship Learning Reinforcement Learning

6 A learning problem: predict fuel efficiency From the UCI repository (thanks to Ross Quinlan) 40 Records Discrete data (for now) Predict MPG

7 © Daniel S. Weld7 Past Insight Any ML problem may be cast as the problem of FUNCTION APPROXIMATION

8 A learning problem: predict fuel efficiency 40 Records Discrete data (for now) Predict MPG X Y Need to find “Hypothesis”: f : X  Y

9 How Represent Function? f ( ) )  Conjunctions in Propositional Logic? maker=asia  weight=low Need to find “Hypothesis”: f : X  Y

10 Restricted Hypothesis Space © Daniel S. Weld10 Many possible representations Natural choice: conjunction of attribute constraints For each attribute: – Constrain to a specific value: eg maker=asia – Don’t care: ? For example maker cyl displace weight accel …. asia ? ? low ? Represents maker=asia  weight=low

11 © Daniel S. Weld11 Consistency Say an “example is consistent with a hypothesis” when the example logically satisfies the hypothesis Hypothesis: maker=asia  weight=low maker cyl displace weight accel …. asia ? ? low ? Examples: asia5low … usa4low …

12 12 Ordering on Hypothesis Space © Daniel S. Weld x1x1 asia5low x2x2 usa4med h1: maker=asia  accel=low h3: maker=asia  weight=low h2: maker=asia

13 Ok, so how does it perform? Version Space Algorithm 13

14 How Represent Function? f ( ) )  General Propositional Logic? maker=asia  weight=low Need to find “Hypothesis”: f : X  Y

15 Hypotheses: decision trees f : X  Y Each internal node tests an attribute x i Each branch assigns an attribute value x i =v Each leaf assigns a class y To classify input x ? traverse the tree from root to leaf, output the labeled y Cylinders 34568 goodbad MakerHorsepower lowmed highamericaasiaeurope bad good bad

16 Hypothesis space How many possible hypotheses? Cylinders 34568 goodbad Maker Horsepowe r low med highamericaasiaeurope bad good bad

17 Hypothesis space How many possible hypotheses? What functions can be represented? Cylinders 34568 goodbad Maker Horsepowe r low med highamericaasiaeurope bad good bad

18 What functions can be represented? cyl=3  (cyl=4  (maker=asia  maker=europe))  … Cylinders 34568 goodbad Maker Horsepowe r low med highamericaasiaeurope bad good bad

19 Hypothesis space How many possible hypotheses? What functions can be represented? How many will be consistent with a given dataset? Cylinders 34568 goodbad Maker Horsepowe r low med highamericaasiaeurope bad good bad

20 Hypothesis space How many possible hypotheses? What functions can be represented? How many will be consistent with a given dataset? How will we choose the best one? Cylinders 34568 goodbad Maker Horsepowe r low med highamericaasiaeurope bad good bad

21 Are all decision trees equal? Many trees can represent the same concept But, not all trees will have the same size! e.g.,  = (A ∧ B)  (  A ∧ C) A BC t t f f + _ tf + _ Which tree do we prefer? B CC tf f + tf + _ A tf A _ + _ tt f

22 Learning decision trees is hard!!! Finding the simplest (smallest) decision tree is an NP-complete problem [Hyafil & Rivest ’76] Resort to a greedy heuristic: – Start from empty decision tree – Split on next best attribute (feature) – Recurse

23 © Daniel S. Weld23 What is the Simplest Tree? Is this a good tree? [22+, 18-] Means: correct on 22 examples incorrect on 18 examples predict mpg=bad

24 Improving Our Tree predict mpg=bad

25 Recursive Step Take the Original Dataset.. And partition it according to the value of the attribute we split on Records in which cylinders = 4 Records in which cylinders = 5 Records in which cylinders = 6 Records in which cylinders = 8

26 Recursive Step Records in which cylinders = 4 Records in which cylinders = 5 Records in which cylinders = 6 Records in which cylinders = 8 Build tree from These records.. Build tree from These records.. Build tree from These records.. Build tree from These records..

27 Second level of tree Recursively build a tree from the seven records in which there are four cylinders and the maker was based in Asia (Similar recursion in the other cases)

28 A full tree

29 Two Questions 1.Which attribute gives the best split? 2.When to stop recursion? Greedy Algorithm: – Start from empty decision tree – Split on the best attribute (feature) – Recurse

30 Which attribute gives the best split? A 1 : The one with the highest information gain Defined in terms of entropy A 2 : Actually many alternatives, eg, accuracy Seeks to reduce the misclassification rate 30

31 Splitting: choosing a good attribute X1X1 X2X2 Y TTT TFT TTT TFT FTT FFF FTF FFF X1X1 Y=t : 4 Y=f : 0 tf Y=t : 1 Y=f : 3 X2X2 Y=t : 3 Y=f : 1 tf Y=t : 2 Y=f : 2 Would we prefer to split on X 1 or X 2 ? Idea: use counts at leaves to define probability distributions so we can measure uncertainty!

32 Measuring uncertainty Good split if we are more certain about classification after split – Deterministic good (all true or all false) – Uniform distribution? – What about distributions in between? P(Y=A) = 1/3P(Y=B) = 1/4P(Y=C) = 1/4P(Y=D) = 1/6 P(Y=A) = 1/2P(Y=B) = 1/4P(Y=C) = 1/8P(Y=D) = 1/8 Bad

33 Entropy Entropy H(Y) of a random variable Y More uncertainty, more entropy! Information Theory interpretation: H(Y) is the expected number of bits needed to encode a randomly drawn value of Y (under most efficient code)

34 Entropy Example X1X1 X2X2 Y TTT TFT TTT TFT FTT FFF P(Y=t) = 5/6 P(Y=f) = 1/6 H(Y) = - 5/6 log 2 5/6 - 1/6 log 2 1/6 = 0.65

35 Conditional Entropy Conditional Entropy H( Y |X) of a random variable Y conditioned on a random variable X X1X1 Y=t : 4 Y=f : 0 tf Y=t : 1 Y=f : 1 P(X 1 =t) = 4/6 P(X 1 =f) = 2/6 X1X1 X2X2 Y TTT TFT TTT TFT FTT FFF Example: H(Y|X 1 ) = - 4/6 (1 log 2 1 + 0 log 2 0) - 2/6 (1/2 log 2 1/2 + 1/2 log 2 1/2) = 2/6 = 0.33

36 Information Gain Advantage of attribute – decrease in entropy (uncertainty) after splitting X1X1 X2X2 Y TTT TFT TTT TFT FTT FFF In our running example: IG(X 1 ) = H(Y) – H(Y|X 1 ) = 0.65 – 0.33 IG(X 1 ) > 0  we prefer the split!

37 Alternate Splitting Criteria Misclassification Impurity Minimum probability that a training pattern will be misclassified M(Y) = 1-max P(Y=y i ) Misclassification Gain IG M (X) = [1-max P(Y=y i )] - [1-(max max P(Y=y i | x=x j ))] 37 ji i i

38 Learning Decision Trees Start from empty decision tree Split on next best attribute (feature) – Use information gain (or…?) to select attribute: Recurse

39 Suppose we want to predict MPG Now, Look at all the information gains… predict mpg=bad

40 Tree After One Iteration

41 When to Terminate? ©Carlos Guestrin 2005-200941

42 Base Case One Don’t split a node if all matching records have the same output value

43 Base Case Two Don’t split a node if none of the attributes can create multiple [non-empty] children

44 Base Case Two: No attributes can distinguish

45 Base Cases: An idea Base Case One: If all records in current data subset have the same output then don’t recurse Base Case Two: If all records have exactly the same set of input attributes then don’t recurse Proposed Base Case 3: If all attributes have zero information gain then don’t recurse Is this a good idea?

46 The problem with Base Case 3 y = a XOR b The information gains:The resulting decision tree:

47 But Without Base Case 3: y = a XOR b The resulting decision tree: So:Base Case 3? Include or Omit?

48 Building Decision Trees BuildTree(DataSet,Output) If all output values are the same in DataSet, Then return a leaf node that says “predict this unique output” If all input values are the same, Then return a leaf node that says “predict the majority output” Else find attribute X with highest Info Gain Suppose X has n X distinct values (i.e. X has arity n X ). Create and return a non-leaf node with n X children. The i th child is built by calling BuildTree(DS i,Output) Where DS i consists of all those records in DataSet for which X = i th distinct value of X.

49 General View of a Classifier 0.01.02.03.04.05.06.0 0.01.02.03.0 Hypothesis: Decision Boundary for labeling function + + + + + + + + - - - - - - - - - - + ++ - - - + + Label: - Label: + ? ? ? ?

50 © Daniel S. Weld50

51 Ok, so how does it perform? 51

52 MPG Test set error

53 MPG test set error The test set error is much worse than the training set error… …why?

54 Decision trees will overfit Our decision trees have no learning bias – Training set error is always zero! (If there is no label noise) – Lots of variance – Will definitely overfit!!! – Must introduce some bias towards simpler trees Why might one pick simpler trees?

55 Occam’s Razor Why Favor Short Hypotheses? Arguments for: – Fewer short hypotheses than long ones →A short hyp. less likely to fit data by coincidence →Longer hyp. that fit data may might be coincidence Arguments against: – Argument above on really uses the fact that hypothesis space is small!!! – What is so special about small sets based on the complexity of each hypothesis?

56 How to Build Small Trees Several reasonable approaches: Stop growing tree before overfit – Bound depth or # leaves – Base Case 3 – Doesn’t work well in practice Grow full tree; then prune – Optimize on a held-out (development set) If growing the tree hurts performance, then cut back Con: Requires a larger amount of data… – Use statistical significance testing Test if the improvement for any split is likely due to noise If so, then prune the split! – Convert to logical rules Then simplify rules

57 Reduced Error Pruning Split data into training & validation sets (10-33%) Train on training set (overfitting) Do until further pruning is harmful: 1)Evaluate effect on validation set of pruning each possible node (and tree below it) 2)Greedily remove the node that most improves accuracy of validation set 57

58 © Daniel S. Weld58 Effect of Reduced-Error Pruning Cut tree back to here

59 Alternatively Chi-squared pruning – Grow tree fully – Consider leaves in turn Is parent split worth it? Compared to Base-Case 3? 59

60 Consider this split

61 A chi-square test Suppose that mpg was completely uncorrelated with maker. What is the chance we’d have seen data of at least this apparent level of association anyway? By using a particular kind of chi-square test, the answer is 13.5% Such hypothesis tests are relatively easy to compute, but involved

62 Using Chi-squared to avoid overfitting Build the full decision tree as before But when you can grow it no more, start to prune: – Beginning at the bottom of the tree, delete splits in which p chance > MaxPchance – Continue working you way up until there are no more prunable nodes MaxPchance is a magic parameter you must specify to the decision tree, indicating your willingness to risk fitting noise

63 Pruning example With MaxPchance = 0.05, you will see the following MPG decision tree: When compared with the unpruned tree improved test set accuracy worse training accuracy

64 Regularization Note for Future: MaxPchance is a regularization parameter that helps us bias towards simpler models Smaller TreesLarger Trees MaxPchance Increasing Decreasing Expected Test set Error We’ll learn to choose the value of magic parameters like this one later!

65 Missing Data 65 What to do??

66 © Daniel S. Weld66 Missing Data 1 Assign attribute … most common value, … given classification Day Temp Humid WindTennis? d1hhweak n d2hhs n d8mhweak n d9c weak yes d11mns yes Don’t use this instance for learning? most common value for attribute, or

67 © Daniel S. Weld67 Fractional Values 75% h and 25% n Use in gain calculations Further subdivide if other missing attributes Same approach to classify test ex with missing attr – Classification is most probable classification – Summing over leaves where it got divided Day Temp Humid WindTennis? d1hhweak n d2hhs n d8mhweak n d9c weak yes d11mns yes [0.75+, 3-] [1.25+, 0-]

68 © Daniel S. Weld68 Non-Boolean Features Features with multiple discrete values Real-valued Features Construct a multi-way split Test for one value vs. all of the others? Group values into two disjoint subsets? Discretize? Consider a threshold split using observed values?

69 Attributes with Many Values? ©Carlos Guestrin 2005-200969

70 © Daniel S. Weld70 Attributes with many values So many values that it – Divides examples into tiny sets – Each set likely uniform  high info gain – But poor predictor… Need to penalize these attributes

71 © Daniel S. Weld71 One approach: Gain ratio SplitInfo  entropy of S wrt values of A (Contrast with entropy of S wrt target value)  attribs with many uniformly distrib values e.g. if A splits S uniformly into n sets SplitInformation = log 2 (n)… = 1 for Boolean

72 Real-Valued inputs What should we do if some of the inputs are real-valued? Infinite number of possible split values!!! Finite dataset, only finite number of relevant splits!

73 “One branch for each numeric value” idea: Hopeless: with such high branching factor will shatter the dataset and overfit

74 Threshold splits Binary tree, split on attribute X at value t – One branch: X < t – Other branch: X ≥ t

75 The set of possible thresholds Binary tree, split on attribute X – One branch: X < t – Other branch: X ≥ t Search through possible values of t – Seems hard!!! But only finite number of t’s are important – Sort data according to X into {x 1,…,x m } – Consider split points of the form x i + (x i+1 – x i )/2

76 Picking the best threshold Suppose X is real valued Define IG(Y|X:t) as H(Y) - H(Y|X:t) Define H(Y|X:t) = H(Y|X = t) P(X >= t) IG(Y|X:t) is the information gain for predicting Y if all you know is whether X is greater than or less than t Then define IG*(Y|X) = max t IG(Y|X:t) For each real-valued attribute, use IG*(Y|X) for assessing its suitability as a split Note, may split on an attribute multiple times, with different thresholds

77 Example with MPG

78 Example tree for our continuous dataset

79 What you need to know about decision trees Decision trees are one of the most popular ML tools – Easy to understand, implement, and use – Computationally cheap (to solve heuristically) Information gain to select attributes (ID3, C4.5,…) Presented for classification, can be used for regression and density estimation too Decision trees will overfit!!! – Must use tricks to find “simple trees”, e.g., Fixed depth/Early stopping Pruning Hypothesis testing

80 Acknowledgements Some of the material in the decision trees presentation is courtesy of Andrew Moore, from his excellent collection of ML tutorials: – http://www.cs.cmu.edu/~awm/tutorials http://www.cs.cmu.edu/~awm/tutorials Improved by – Carlos Guestrin & – Luke Zettlemoyer


Download ppt "CSE 446: Decision Trees Winter 2012 Slides adapted from Carlos Guestrin and Andrew Moore by Luke Zettlemoyer & Dan Weld."

Similar presentations


Ads by Google