regression linear regression regression trees

29
Jeff Howbert Introduction to Machine Learning Winter 2014 1 Regression Linear Regression Regression Trees

Upload: tara

Post on 17-Jan-2016

153 views

Category:

Documents


4 download

DESCRIPTION

Regression Linear Regression Regression Trees. Characteristics of classification models. slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006). slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006). slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006). - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 1

Regression

Linear RegressionRegression Trees

Page 2: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 2

Characteristics of classification models

model linear parametric

global stable

decision tree no no no no

logistic regression yes yes yes yes

discriminant analysis yes/no yes yes yes

k-nearest neighbor no no no no

naïve Bayes no yes/no yes yes

Page 3: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 3

slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Page 4: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 4

slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Page 5: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 5

slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Page 6: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 6

slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Page 7: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 7

slide thanks to Greg Shakhnarovich (CS195-5, Brown Univ., 2006)

Page 8: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 8

Suppose target labels come from set Y

– Binary classification: Y = { 0, 1 }

– Regression: Y = (real numbers) A loss function maps decisions to costs:

– defines the penalty for predicting when the true value is .

Standard choice for classification:0/1 loss (same asmisclassification error)

Standard choice for regression:squared loss

Loss function

)ˆ,( yyL yy

otherwise 1

ˆ if 0)ˆ,(1/0

yyyyL

2)ˆ()ˆ,( yyyyL

Page 9: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 9

Most popular estimation method is least squares:

– Determine linear coefficients w that minimize sum of squared loss (SSL).

– Use standard (multivariate) differential calculus: differentiate SSL with respect to w find zeros of each partial differential equation solve for each wi

In one dimension:

Least squares linear fit to data

ttt

N

jjj

xxwwy

x, yy,xxwywx

yxw

Nxwwy

sample test for

training of means

samples of number SSL

10

101

1

210

ˆ

]var[

],cov[

))((

Page 10: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 10

Multiple dimensions

– To simplify notation and derivation, add a new feature x0 = 1 to feature vector x:

– Calculate SSL and determine w:

Least squares linear fit to data

xw

d

iii xwwy

10 1ˆ

ttt

j

j

N

j

d

iiij

y

y

xwy

xxw

yXXXw

xX

y

XwyXwy

sample test for

samples training all ofmatrix

responses training all of vector

SSL

TT

T

ˆ

)(

)()()(

1

1

2

0

Page 11: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 11

Least squares linear fit to data

Page 12: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 12

Least squares linear fit to data

Page 13: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 13

The inputs X for linear regression can be:

– Original quantitative inputs

– Transformation of quantitative inputs, e.g. log, exp, square root, square, etc.

– Polynomial transformation example: y = w0 + w1x + w2x2 + w3x3

– Basis expansions

– Dummy coding of categorical inputs

– Interactions between variables example: x3 = x1 x2

This allows use of linear regression techniques to fit much more complicated non-linear datasets.

Extending application of linear regression

Page 14: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 14

Example of fitting polynomial curve with linear

model

Page 15: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 15

97 samples, partitioned into:

– 67 training samples

– 30 test samples Eight predictors (features):

– 6 continuous (4 log transforms)

– 1 binary

– 1 ordinal Continuous outcome variable:

– lpsa: log( prostate specific antigen level )

Prostate cancer dataset

Page 16: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 16

Correlations of predictors in prostate cancer

dataset

lcavol log cancer volumelweight log prostate weightage agelbph log amount of benign prostatic hypertrophysvi seminal vesicle invasionlcp log capsular penetrationgleason Gleason scorepgg45 percent of Gleason scores 4 or 5

Page 17: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 17

Fit of linear model to prostate cancer dataset

Page 18: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 18

Complex models (lots of parameters) often prone to overfitting. Overfitting can be reduced by imposing a constraint on the overall

magnitude of the parameters. Two common types of regularization (shrinkage) in linear regression:

– L2 regularization (a.k.a. ridge regression). Find w which minimizes:

is the regularization parameter: bigger imposes more constraint

– L1 regularization (a.k.a. lasso). Find w which minimizes:

Regularization

N

j

d

ii

d

iiij wxwy

1 1

22

0

)(

N

j

d

ii

d

iiij wxwy

1 1

2

0

||)(

Page 19: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 19

Example of L2 regularization

L2 regularization shrinks coefficients towards (but not to) zero, and towards

each other.

Page 20: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 20

Example of L1 regularization

L1 regularization shrinks coefficients to zero at

different rates; different values of give models with different subsets of

features.

Page 21: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 21

Example of subset selection

Page 22: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 22

Comparison of various selection and shrinkage

methods

Page 23: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 23

L1 regularization gives sparse models, L2 does

not

Page 24: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 24

In addition to linear regression, there are:– many types of non-linear regression

regression trees nearest neighbor neural networks support vector machines

– locally linear regression– etc.

Other types of regression

Page 25: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 25

Model very similar to classification trees Structure:

binary splits on single attributes Prediction:

mean value of training samples in leaf Induction:

– greedy– loss function: sum of squared loss

Regression trees

Page 26: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 26

Regression trees

54312 RRRRR

Page 27: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 27

Assume:– Attribute and split threshold for candidate split

are selected– Candidate split partitions samples at parent

node into child node sample sets C1 and C2

– Loss for the candidate split is:

Regression tree loss function

22 )()(2

2

1

1

Cx

CiCx

Ci

ii

yyyy

21,,21

CCyy CC nodes child in samples of values mean are

Page 28: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 28

Characteristics of regression models

model linearparametri

c

global

stable

continuou

s

linear regression yes yes yes yes yes

regression tree no no no no no

Page 29: Regression Linear  Regression Regression Trees

Jeff Howbert Introduction to Machine Learning Winter 2014 29

MATLAB interlude

matlab_demo_08.m