1 / 70

Introduction to Machine Learning

Introduction to Machine Learning. Learning. Agent has made observations ( data ) Now must make sense of it ( hypotheses ) Hypotheses alone may be important (e.g., in basic science) For inference (e.g., forecasting) To take sensible actions (decision making)

barton
Télécharger la présentation

Introduction to Machine Learning

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Machine Learning

  2. Learning • Agent has made observations (data) • Now must make sense of it (hypotheses) • Hypotheses alone may be important (e.g., in basic science) • For inference (e.g., forecasting) • To take sensible actions (decision making) • A basic component of economics, social and hard sciences, engineering, …

  3. What is Learning? • Mostly generalization from experience: “Our experience of the world is specific, yet we are able to formulate general theories that account for the past and predict the future”M.R.Genesereth and N.J. Nilsson, in Logical Foundations of AI, 1987 •  Concepts, heuristics, policies • Supervised vs. un-supervised learning

  4. Topics in Machine Learning TechniquesBayesian learningDecision treesNeural networksSupport vector machinesBoostingCase-based reasoningDimensionality reduction… Tasks & settingsClassificationRankingClusteringRegressionDecision-makingSupervisedUnsupervisedSemi-supervisedActiveReinforcement learning Applications Document retrieval Document classification Data mining Computer vision Scientific discoveryRobotics…

  5. Supervised Learning • Agent is given a training set of input/output pairs (x,y), with y=f(x) • Task: build a model that will allow it to predict f(x)for a new x

  6. Unsupervised Learning • Agent is given a training set of data points x • Task: learn “patterns” in the data (e.g., clusters)

  7. Reinforcement Learning • Agent acts sequentially in the real world, chooses actions a1,…,an, receives reward R • Must decide which actions were most responsible for R

  8. Other Variants • Semi-supervised learning • Some labels are given in the training set (usually a relatively small number) • Or, some labels are erroneous • Active (supervised) learning • Learner can choose which input points x to provide to an oracle, which will return the output y=f(x).

  9. Deductive Vs. Inductive Reasoning • Deductive reasoning: • General rules (e.g., logic) to specific examples • Inductive reasoning: • Specific examples to general rules

  10. Inductive Learning • Basic form: learn a functionfrom examples • f is the unknown target function • An example is a pair (x, f(x)) • Problem: find a hypothesis h • such that h ≈ f • given a training set of examples D • Instance of supervised learning • Classification task: f  {0,1,…,C} (usually C=1) • Regression task: f reals

  11. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting:

  12. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting:

  13. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting:

  14. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting:

  15. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting:

  16. Inductive learning method • Construct/adjust h to agree with f on training set • (h is consistent if it agrees with f on all examples) • E.g., curve fitting: h=D is a trivial, but perhaps uninteresting solution (caching)

  17. a small one! Classification Task • The target function f(x) takes on values True and False • A example is positive if f is True, else it is negative • The set X of all examples is the example set • The training set is a subset of X

  18. Logic-Based Inductive Learning • Here, examples (x, f(x)) take on discrete values

  19. Logic-Based Inductive Learning • Here, examples (x, f(x)) take on discrete values Concept Note that the training set does not say whether an observable predicate is pertinent or not

  20. Rewarded Card Example • Deck of cards, with each card designated by [r,s], its rank and suit, and some cards “rewarded” • Background knowledge KB:((r=1) v … v (r=10))  NUM(r)((r=J) v (r=Q) v (r=K))  FACE(r)((s=S) v (s=C))  BLACK(s)((s=D) v (s=H))  RED(s) • Training set D:REWARD([4,C])  REWARD([7,C])  REWARD([2,S])  REWARD([5,H])  REWARD([J,S])

  21. Rewarded Card Example • Deck of cards, with each card designated by [r,s], its rank and suit, and some cards “rewarded” • Background knowledge KB:((r=1) v … v (r=10))  NUM(r)((r=J) v (r=Q) v (r=K))  FACE(r)((s=S) v (s=C))  BLACK(s)((s=D) v (s=H))  RED(s) • Training set D:REWARD([4,C])  REWARD([7,C])  REWARD([2,S])  REWARD([5,H])  REWARD([J,S]) • Possible inductive hypothesis:h  (NUM(r)  BLACK(s)  REWARD([r,s])) There are several possible inductive hypotheses

  22. Learning a Logical Predicate (Concept Classifier) • Set E of objects (e.g., cards) • Goal predicate CONCEPT(x), where x is an object in E, that takes the value True or False (e.g., REWARD) • Observable predicates A(x), B(X), … (e.g., NUM, RED) • Training set: values of CONCEPT for some combinations of values of the observable predicates

  23. Learning a Logical Predicate (Concept Classifier) • Set E of objects (e.g., cards) • Goal predicate CONCEPT(x), where x is an object in E, that takes the value True or False (e.g., REWARD) • Observable predicates A(x), B(X), … (e.g., NUM, RED) • Training set: values of CONCEPT for some combinations of values of the observable predicates • Find a representation of CONCEPT in the form: CONCEPT(x)  S(A,B, …)where S(A,B,…) is a sentence built with the observable predicates, e.g.: CONCEPT(x)  A(x)  (B(x) v C(x))

  24. Hypothesis Space • An hypothesis is any sentence of the form: CONCEPT(x) S(A,B, …)where S(A,B,…) is a sentence built using the observable predicates • The set of all hypotheses is called the hypothesis space H • An hypothesis h agrees with an example if it gives the correct value of CONCEPT

  25. Inductivehypothesis h Training set D - - + - + - - - - + + + + - - + + + + - - - + + Hypothesis space H {[CONCEPT(x)  S(A,B, …)]} Example set X {[A, B, …, CONCEPT]} Inductive Learning Scheme

  26. 2n 2 Size of Hypothesis Space • n observable predicates • 2n entries in truth table defining CONCEPT and each entry can be filled with True or False • In the absence of any restriction (bias), there are hypotheses to choose from • n = 6  2x1019 hypotheses!

  27. Multiple Inductive Hypotheses h1 NUM(r)  BLACK(s)  REWARD([r,s]) h2 BLACK(s) (r=J)  REWARD([r,s]) h3 ([r,s]=[4,C])  ([r,s]=[7,C])  [r,s]=[2,S])  REWARD([r,s]) h4 ([r,s]=[5,H])  ([r,s]=[J,S])  REWARD([r,s]) agree with all the examples in the training set

  28. Multiple Inductive Hypotheses Need for a system of preferences – called an inductive bias – to compare possible hypotheses h1 NUM(r)  BLACK(s)  REWARD([r,s]) h2 BLACK(s) (r=J)  REWARD([r,s]) h3 ([r,s]=[4,C])  ([r,s]=[7,C])  [r,s]=[2,S])  REWARD([r,s]) h4 ([r,s]=[5,H])  ([r,s]=[J,S])  REWARD([r,s]) agree with all the examples in the training set

  29. Notion of Capacity • It refers to the ability of a machine to learn any training set without error • A machine with too much capacity is like a botanist with photographic memory who, when presented with a new tree, concludes that it is not a tree because it has a different number of leaves from anything he has seen before • A machine with too little capacity is like the botanist’s lazy brother, who declares that if it’s green, it’s a tree • Good generalization can only be achieved when the right balance is struck between the accuracy attained on the training set and the capacity of the machine

  30.  Keep-It-Simple (KIS) Bias • Examples • Use much fewer observable predicates than the training set • Constrain the learnt predicate, e.g., to use only “high-level” observable predicates such as NUM, FACE, BLACK, and RED and/or to have simple syntax • Motivation • If an hypothesis is too complex it is not worth learning it (data caching does the job as well) • There are much fewer simple hypotheses than complex ones, hence the hypothesis space is smaller

  31.  Keep-It-Simple (KIS) Bias • Examples • Use much fewer observable predicates than the training set • Constrain the learnt predicate, e.g., to use only “high-level” observable predicates such as NUM, FACE, BLACK, and RED and/or to have simple syntax • Motivation • If an hypothesis is too complex it is not worth learning it (data caching does the job as well) • There are much fewer simple hypotheses than complex ones, hence the hypothesis space is smaller Einstein: “A theory must be as simple as possible, but not simpler than this”

  32.  Keep-It-Simple (KIS) Bias • Examples • Use much fewer observable predicates than the training set • Constrain the learnt predicate, e.g., to use only “high-level” observable predicates such as NUM, FACE, BLACK, and RED and/or to have simple syntax • Motivation • If an hypothesis is too complex it is not worth learning it (data caching does the job as well) • There are much fewer simple hypotheses than complex ones, hence the hypothesis space is smaller If the bias allows only sentences S that are conjunctions of k << n predicates picked fromthe n observable predicates, then the size of H is O(nk)

  33. A? True False B? False False True C? True True False True False Predicate as a Decision Tree The predicate CONCEPT(x)  A(x) (B(x) v C(x)) can be represented by the following decision tree: • Example:A mushroom is poisonous iffit is yellow and small, or yellow, • big and spotted • x is a mushroom • CONCEPT = POISONOUS • A = YELLOW • B = BIG • C = SPOTTED

  34. A? True False B? False False True C? True True False True False Predicate as a Decision Tree The predicate CONCEPT(x)  A(x) (B(x) v C(x)) can be represented by the following decision tree: • Example:A mushroom is poisonous iffit is yellow and small, or yellow, • big and spotted • x is a mushroom • CONCEPT = POISONOUS • A = YELLOW • B = BIG • C = SPOTTED • D = FUNNEL-CAP • E = BULKY

  35. Training Set

  36. D E B A A T F C T F T F T E A F T T F Possible Decision Tree

  37. D E B A A T F C A? CONCEPT  A (B v C) True False T F B? False False T F T True E C? True A False True True False F T T F Possible Decision Tree CONCEPT  (D(EvA))v(D(C(Bv(B((EA)v(EA))))))

  38. D E B A A T F C A? CONCEPT  A (B v C) True False T F B? False False T F T True E C? True A False True True False F T T F Possible Decision Tree CONCEPT  (D(EvA))v(D(C(Bv(B((EA)v(EA)))))) KIS bias  Build smallest decision tree Computationally intractable problem greedy algorithm

  39. Getting Started:Top-Down Induction of Decision Tree The distribution of training set is: True: 6, 7, 8, 9, 10,13 False: 1, 2, 3, 4, 5, 11, 12

  40. Getting Started:Top-Down Induction of Decision Tree The distribution of training set is: True: 6, 7, 8, 9, 10,13 False: 1, 2, 3, 4, 5, 11, 12 Without testing any observable predicate, we could report that CONCEPT is False (majority rule) with an estimated probability of error P(E) = 6/13 Assuming that we will only include one observable predicate in the decision tree, which predicateshould we test to minimize the probability of error (i.e., the # of misclassified examples in the training set)?  Greedy algorithm

  41. A F T 6, 7, 8, 9, 10, 13 11, 12 True: False: 1, 2, 3, 4, 5 If we test only A, we will report that CONCEPT is Trueif A is True (majority rule) and False otherwise  The number of misclassified examples from the training set is 2 Suppose we pick A

  42. B F T 9, 10 2, 3, 11, 12 True: False: 6, 7, 8, 13 1, 4, 5 If we test only B, we will report that CONCEPT is Falseif B is True and True otherwise  The number of misclassified examples from the training set is 5 Suppose we pick B

  43. C F T 6, 8, 9, 10, 13 1, 3, 4 True: False: 7 1, 5, 11, 12 If we test only C, we will report that CONCEPT is Trueif C is True and False otherwise  The number of misclassified examples from the training set is 4 Suppose we pick C

  44. D F T 7, 10, 13 3, 5 True: False: 6, 8, 9 1, 2, 4, 11, 12 If we test only D, we will report that CONCEPT is Trueif D is True and False otherwise  The number of misclassified examples from the training set is 5 Suppose we pick D

  45. E F T 8, 9, 10, 13 1, 3, 5, 12 True: False: 6, 7 2, 4, 11 If we test only E we will report that CONCEPT is False, independent of the outcome  The number of misclassified examples from the training set is 6 Suppose we pick E

  46. E F T 8, 9, 10, 13 1, 3, 5, 12 True: False: 6, 7 2, 4, 11 If we test only E we will report that CONCEPT is False, independent of the outcome  The number of misclassified examples from the training set is 6 Suppose we pick E So, the best predicate to test is A

  47. 6, 8, 9, 10, 13 True: False: 7 11, 12 Choice of Second Predicate A F T False C F T  The number of misclassified examples from the training set is 1

  48. 11,12 True: False: 7 Choice of Third Predicate A F T False C F T True B T F

  49. A True False A? C False False True True False B? False True B False True True False C? True False True True False True False Final Tree CONCEPT  A (C v B) CONCEPT  A (B v C)

  50. A True False C False False True True B True False False True Subset of examples that satisfy A Top-DownInduction of a DT DTL(D, Predicates) • If all examples in D are positive then return True • If all examples in D are negative then return False • If Predicates is empty then return failure • A  error-minimizing predicate in Predicates • Return the tree whose: - root is A, - left branch is DTL(D+A,Predicates-A), - right branch is DTL(D-A,Predicates-A)

More Related