Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to...

51
Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Transcript of Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to...

Page 1: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Advanced Introduction

to Machine Learning CMU-10715

Risk Minimization

Barnabás Póczos

Page 2: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

What have we seen so far?

2

Several classification & regression algorithms seem to work

fine on training datasets:

• Linear regression

• Logistic regression

• Gaussian Processes

• Naïve Bayes classifier

• Support Vector Machines

How good are these algorithms on unknown test sets?

How many training samples do we need to achieve small error?

What is the smallest possible error we can achieve?

) Learning Theory

Page 3: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Outline • Risk and loss

–Loss functions

–Risk

–Empirical risk vs True risk

–Empirical Risk minimization

• Underfitting and Overfitting

• Classification

• Regression

3

Page 4: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Supervised Learning Setup

Generative model of the data: (train and test data)

4

Regression:

Classification:

Page 5: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Loss

It measures how good we are on a particular (x,y) pair.

5

Loss function:

Page 6: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Loss Examples

Classification loss:

L2 loss for regression:

L1 loss for regression:

Regression: Predict house prices.

Price

6

Page 7: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Squared loss, L2 loss

7 Picture form Alex

Page 8: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

L1 loss

8 Picture form Alex

Page 9: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

-insensitive loss

9 Picture form Alex

Page 10: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Huber’s robust loss

10 Picture form Alex

Page 11: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Risk

Risk of f classification/regression function:

= The expected loss

Why do we care about this?

11

Page 12: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Why do we care about risk?

Risk of f classification/regression function:

=The expected loss

Our true goal is to minimize the loss of the test points!

Usually we don’t know the test points and their labels in advance…, but

(LLN)

12 That is why our goal is to minimize the risk.

Page 13: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Risk Examples

Risk: The expected loss

13

Classification loss:

Risk of classification loss:

L2 loss for regression:

Risk of L2 loss:

Page 14: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Bayes Risk The expected loss

We consider all possible function f here

We don’t know P, but we have i.i.d. training data sampled from P!

Goal of Learning:

The learning algorithm constructs this function fD from the training data. 14

Definition: Bayes Risk

Page 15: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Consistency of learning methods

Definition:

Stone’s theorem 1977: Many classification, regression algorithms

are universally consistent for certain loss functions under certain

conditions: kNN, Parzen kernel regression, SVM,…

Yayyy!!! Wait! This doesn’t tell us anything about the rates…

15

Risk is a random variable:

Page 16: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

No Free Lunch!

Devroy 1982: For every consistent learning method and for every fixed convergence rate an, 9 P(X,Y) distribution such that the

convergence rate of this learning method on P(X,Y) distributed

data is slower than an

16

What can we do now?

Page 17: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

What do we mean on rate?

17

Notation: (stochastic rate, stochastic little o and big O)

(stochastically bounded)

Definition: (stochastically bounded)

Example: (CLT)

Page 18: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Empirical Risk and True Risk

18

Page 19: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Empirical Risk

19

Let us use the empirical counter part:

Shorthand:

True risk of f (deterministic):

Bayes risk:

Empirical risk:

Page 20: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Empirical Risk Minimization

20

Law of Large Numbers:

Empirical risk is converging to the Bayes risk

Page 21: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Overfitting in Classification with ERM

21

Bayes classifier:

Picture from David Pal

Bayes risk:

Generative model:

Page 22: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

22

Picture from David Pal

Bayes risk:

n-order thresholded polynomials

Empirical risk:

Overfitting in Classification with ERM

Page 23: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAAAAA

Is the following predictor a good one?

What is its empirical risk? (performance on training data)

zero !

What about true risk?

> zero

Will predict very poorly on new random test point:

Large generalization error !

Overfitting in Regression with

ERM

23

Page 24: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAAAAA

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 10

0.5

1

1.5

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 10

0.2

0.4

0.6

0.8

1

1.2

1.4

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1-0.2

0

0.2

0.4

0.6

0.8

1

1.2

1.4

0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1-45

-40

-35

-30

-25

-20

-15

-10

-5

0

5

k=1 k=2

k=3 k=7

If we allow very complicated predictors, we could overfit

the training data.

Examples: Regression (Polynomial of order k-1 – degree k )

Overfitting in Regression

24

constant linear

quadratic 6th order

Page 25: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Solutions to Overfitting

25

Page 26: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Solutions to Overfitting

Structural Risk Minimization

Notation:

1st issue: (Model error, Approximation error)

Solution: Structural Risk Minimzation (SRM)

26

Risk Empirical risk

Page 27: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Approximation error, Estimation

error, PAC framework

27

Bayes risk

Risk of the classifier f

Estimation error Approximation error

Probably Approximately Correct (PAC) learning framework

Estimation error

Page 28: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Big Picture

28

Bayes risk

Estimation error Approximation error

Bayes risk

Ultimate goal:

Approximation error

Estimation error

Bayes risk

Page 29: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Solution to Overfitting

2nd issue:

Solution:

29

Page 30: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Approximation with the

Hinge loss and quadratic loss

Picture is taken from R. Herbrich

Page 31: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAAAAA

Empirical risk is no longer a good indicator of true risk

fixed # training data

If we allow very complicated predictors, we could overfit the training data.

Effect of Model Complexity

31

Prediction error on training data

Page 32: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Underfitting

Bayes risk = 0.1 32

Page 33: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Underfitting

Best linear classifier:

The empirical risk of the best linear classifier:

33

Page 34: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Underfitting

Best quadratic classifier:

Same as the Bayes risk ) good fit!

34

Page 35: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAAAAA

Classification

using the classification loss

35

Page 36: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

The Bayes Classifier

36

Lemma I:

Lemma II:

Page 37: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Proofs

37

Lemma I: Trivial from definition

Lemma II: Surprisingly long calculation

Page 38: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

The Bayes Classifier

38

This is what the learning algorithm produces

We will need these definitions, please copy it!

Page 39: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

The Bayes Classifier

39

Theorem I: Bound on the Estimation error

The true risk of what the learning algorithm produces

This is what the learning algorithm produces

Page 40: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

The Bayes Classifier

40

Theorem II: This is what the learning algorithm produces

Page 41: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Proofs

41

Theorem I: Not so long calculations.

Theorem II: Trivial

Main message:

It’s enough to derive upper bounds for

Corollary:

Page 42: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Illustration of the Risks

42

Page 43: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

It is a random variable that we need to bound!

We will bound it with tail bounds!

43

It’s enough to derive upper bounds for

Page 44: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Hoeffding’s inequality (1963)

44

Special case

Page 45: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Binomial distributions

45

Our goal is to bound

Bernoulli(p)

Therefore, from Hoeffding we have:

Yuppie!!!

Page 46: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Inversion

46

From Hoeffding we have:

Therefore,

Page 47: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Union Bound

47

Our goal is to bound:

We already know:

Theorem: [tail bound on the ‘deviation’ in the worst case]

Worst case error

Proof:

This is not the worst classifier in terms of classification accuracy!

Worst case means that the empirical risk of classifier f is the furthest from its true risk!

Page 48: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Inversion of Union Bound

48

Therefore,

We already know:

Page 49: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Inversion of Union Bound

49

•The larger the N, the looser the bound

•This results is distribution free: True for all P(X,Y) distributions

• It is useless if N is big, or infinite… (e.g. all possible hyperplanes)

We will see later how to fix that. (Hint: McDiarmid, VC dimension…)

Page 50: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

The Expected Error

50

Our goal is to bound:

Theorem: [Expected ‘deviation’ in the worst case]

Worst case deviation

We already know:

Proof: we already know a tail bound.

(Tail bound, Concentration inequality)

(From that actually we get a bit weaker inequality… oh well)

This is not the worst classifier in terms of classification accuracy!

Worst case means that the empirical risk of classifier f is the furthest from its true risk!

Page 51: Introduction to Machine Learningepxing/Class/10715/lectures/RiskMin.pdf · Advanced Introduction to Machine Learning CMU-10715 Risk Minimization Barnabás Póczos

Thanks for your attention

51