introduction to regressionlsong/teaching/cse6740/lecture4.pdfmachine learning...

31
Machine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 Based on slides from Eric Xing, CMU Reading: Chap. 3, CB

Upload: others

Post on 04-Jul-2020

12 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Machine Learning

CSE6740/CS7641/ISYE6740, Fall 2012

Introduction to Regression

Le Song

Lecture 4, August 30, 2012

Based on slides from Eric Xing, CMU

Reading: Chap. 3, CB

Page 2: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Machine learning for apartment

hunting

Suppose you are to move to LA!!

And you want to find the most

reasonably priced apartment

satisfying your needs:

square-ft., # of bedroom, distance to

campus …

Living area (ft2) # bedroom Rent ($)

230 1 600

506 2 1000

433 2 1100

109 1 500

150 1 ?

270 1.5 ?

Page 3: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The learning problem

Features:

Living area, distance to campus, #

bedroom …

Denote as x=[x1, x2, … xk]

Target:

Rent

Denoted as y

Training set:

ren

t

Living area

ren

t

Living area

Location

knnn

k

k

nxxx

xxx

xxx

,,,

,,,

,,,

21

22212

12111

2

1

x

x

x

X

nny

y

y

y

y

y

Y

2

1

2

1

or

Page 4: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Linear Regression

22

110

ˆ xxy

n

iiii yxyJ

1

2))(ˆ(2

1)(

Page 5: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The Least-Mean-Square (LMS)

method

n

ii

T

i yJ1

2

21

)()( x

Page 6: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The Least-Mean-Square (LMS)

method

n

i

ji

tT

ii

t

j

t

j xy1

)(1)( x

Page 7: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The Least-Mean-Square (LMS)

method

Steepest descent

Note that:

This is as a batch gradient descent algorithm

n

ii

T

ii

T

k

yJJJ11

)(,, xx

n

in

tT

nntt y

1

1 xx )(

Page 8: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Some matrix derivatives

For , define:

Trace:

Some fact of matrix derivatives (without proof)

fA

fA

fA

fA

Af

mnm

n

A

1

111

)(

RR nmf :

, tr

n

iiiAA

1

, tr aa BCACABABC trtrtr

, tr TA BAB , tr TTT

A ABCCABCABA T

A AAA 1

Page 9: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The normal equations

Write the cost function in matrix form:

To minimize J(θ), take derivative and set to zero:

yyXyyXXX

yXyX

yJ

TTTTTT

T

n

ii

T

i

212121

1

2)()( x

nx

x

x

X

2

1

ny

y

y

y

2

1

0

221

22121

yXXX

yXXXXX

yyXyXX

yyXyyXXXJ

TT

TTT

TTTT

TTTTTT

trtrtr

tr

yXXX TT

The normal equations

yXXX TT 1*

Page 10: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

A recap:

LMS update rule

Pros: on-line, low per-step cost

Cons: coordinate, maybe slow-converging

Steepest descent

Pros: fast-converging, easy to implement

Cons: a batch,

Normal equations

Pros: a single-shot algorithm! Easiest to implement.

Cons: need to compute pseudo-inverse (XTX)-1, expensive, numerical issues

(e.g., matrix is singular ..)

ji

tT

ii

t

j

t

j xy )(1 x

n

ii

tT

iitt y

1

1 )( xx

yXXX TT 1*

Page 11: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Geometric Interpretation of LMS

The predictions on the training data are:

Note that

and

is the orthogonal projection of

into the space spanned by the columns

of X

yXXXXXy TT 1 *ˆ

yIXXXXyy TT

0

1

1

yXXXXXX

yIXXXXXyyX

TTTT

TTTT

!!

y y

nx

x

x

X

2

1

Page 12: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Probabilistic Interpretation of

LMS

Let us assume that the target variable and the inputs are

related by the equation:

where ε is an error term of unmodeled effects or random noise

Now assume that ε follows a Gaussian N(0,σ), then we have:

By independence assumption:

iiT

iy x

2

2

221

)(exp);|( i

Ti

ii

yxyp

x

2

12

1 221

n

i iT

i

nn

iii

yxypL

)(exp);|()(

x

Page 13: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Probabilistic Interpretation of

LMS, cont.

Hence the log-likelihood is:

Do you recognize the last term?

Yes it is:

Thus under independence assumption, LMS is equivalent to

MLE of θ !

n

i iT

iynl1

22 211

21

)(log)( x

n

ii

T

i yJ1

2

21

)()( x

Page 14: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Beyond basic LR

LR with non-linear basis functions

Locally weighted linear regression

Regression trees and Multilinear Interpolation

Page 15: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

LR with non-linear basis

functions

LR does not mean we can only deal with linear relationships

We are free to design (non-linear) features under LR

where the fj(x) are fixed basis functions (and we define f0(x) = 1).

Example: polynomial regression:

We will be concerned with estimating (distributions over) the

weights θ and choosing the model order M.

)()( xxy Tm

j j ff 10

321 xxxx ,,,:)( f

Page 16: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Basis functions

There are many basis functions, e.g.:

Polynomial

Radial basis functions

Sigmoidal

Splines, Fourier, Wavelets, etc

1 jj xx)(f

2

2

2s

xx

j

j

f exp)(

s

xx

j

j

f )(

Page 17: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

1D and 2D RBFs

1D RBF

After fit:

Page 18: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Good and Bad RBFs

A good 2D RBF

Two bad 2D RBFs

Page 19: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Locally weighted linear

regression

Overfitting and underfitting

xy 10 2

210 xxy

5

0j

jj xy

Page 20: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Bias and variance

we define the bias of a model to be the expected

generalization error even if we were to fit it to a very (say,

infinitely) large training set.

By fitting "spurious" patterns in the training set, we might

again obtain a model with large generalization error. In this

case, we say the model has large variance.

Page 21: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

The algorithm: Instead of minimizing

now we fit θ to minimize

Where do wi's come from?

where x is the query point for which we'd like to know its corresponding y

Essentially we put higher weights on (errors on) training

examples that are close to the query point (than those that are

further away from the query)

Do we also have a probabilistic interpretation here (as we did for LR)?

Locally weighted linear

regression

n

ii

T

i yJ1

2

21

)()( x

n

ii

T

ii ywJ1

2

21

)()( x

2

2

2)(

expxxi

iw

Page 22: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Parametric vs. non-parametric

Locally weighted linear regression is the first example we are

running into of a non-parametric algorithm.

The (unweighted) linear regression algorithm that we saw

earlier is known as a parametric learning algorithm

because it has a fixed, finite number of parameters (the θ), which are fit to the

data;

Once we've fit the θ and stored them away, we no longer need to keep the

training data around to make future predictions.

In contrast, to make predictions using locally weighted linear regression, we need

to keep the entire training set around.

The term "non-parametric" (roughly) refers to the fact that the

amount of stuff we need to keep in order to represent the

hypothesis grows linearly with the size of the training set.

Page 23: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Robust Regression

The best fit from a quadratic

regression

But this is probably better …

How can we do this?

Page 24: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

LOESS-based Robust Regression

Remember what we do in "locally weighted linear regression"?

we "score" each point for its impotence

Now we score each point according to its "fitness"

(Courtesy to Andrew Moor)

Page 25: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Robust regression

For k = 1 to R…

Let (xk ,yk) be the kth datapoint

Let yestk be predicted value of yk

Let wk be a weight for data point k that is large if

the data point fits well and small if it fits badly:

Then redo the regression using weighted data points.

Repeat whole thing until converged!

2)( estkkk yyw f

Page 26: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Robust regression—probabilistic

interpretation

What regular regression does:

Assume yk was originally generated using the following recipe:

Computational task is to find the Maximum Likelihood

estimation of θ

),( 20 N kT

ky x

Page 27: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Robust regression—probabilistic

interpretation

What LOESS robust regression does:

Assume yk was originally generated using the following recipe:

with probability p:

but otherwise

Computational task is to find the Maximum Likelihood

estimates of θ, p, µ and σhuge.

The algorithm you saw with iterative reweighting/refitting

does this computation for us. Later you will find that it is an

instance of the famous E.M. algorithm

),( 20 N kT

ky x

),(~ huge2Nky

Page 28: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Regression Tree

Decision tree for regression

Gender Rich? Num.

Children

# travel

per yr.

Age

F No 2 5 38

M No 0 2 25

M Yes 1 0 72

: : : : :

Gender?

Predicted age=39 Predicted age=36

Female Male

Page 29: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

A conceptual picture

Assuming regular regression trees, can you sketch a graph of

the fitted function y*(x) over this diagram?

𝑋 < 𝑥0?

Page 30: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

How about this one?

Partition the space and each partition a constant fit

Each cell can be reached by asking a set of questions

Page 31: Introduction to Regressionlsong/teaching/CSE6740/lecture4.pdfMachine Learning CSE6740/CS7641/ISYE6740, Fall 2012 Introduction to Regression Le Song Lecture 4, August 30, 2012 ... Some

Take home message

Gradient descent

On-line

Batch

Normal equations

Equivalence of LMS and MLE

LR does not mean fitting linear relations, but linear

combination or basis functions (that can be non-linear)

Weighting points by importance versus by fitness