Optimizing y Prediction with Kernel Functions & ǫ-Insensitive Loss in SVR, Slides of Engineering Dynamics

Support vector regression (svr), a method for predicting a continuous target variable y based on input features x. The approach involves finding the best function g(x, w) to minimize the ǫ-insensitive loss function, which is a variation of the standard regression loss function. How to choose the model parameters, the optimization problem, and the dual problem to obtain the optimal model. Svr is particularly useful when dealing with high-dimensional data and non-linearly separable data.

Typology: Slides

2012/2013

Uploaded on 04/19/2013

padmaja
padmaja 🇮🇳

4.5

(12)

45 documents

1 / 135

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
We have been discussing SVM method for learning
classifiers.
PR NPTEL course p.1/135
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42
pf43
pf44
pf45
pf46
pf47
pf48
pf49
pf4a
pf4b
pf4c
pf4d
pf4e
pf4f
pf50
pf51
pf52
pf53
pf54
pf55
pf56
pf57
pf58
pf59
pf5a
pf5b
pf5c
pf5d
pf5e
pf5f
pf60
pf61
pf62
pf63
pf64

Partial preview of the text

Download Optimizing y Prediction with Kernel Functions & ǫ-Insensitive Loss in SVR and more Slides Engineering Dynamics in PDF only on Docsity!

  • We have been discussing SVM method for learningclassifiers. PR NPTEL course – p.1/
  • We have been discussing SVM method for learningclassifiers. - The basic idea is to transform the feature space andlearn a linear classifier in the new space. PR NPTEL course – p.2/
  • We have been discussing SVM method for learningclassifiers. - The basic idea is to transform the feature space andlearn a linear classifier in the new space. - Using Kernel functions we can do this mappingimplicitly. - Thus Kernels give us an elegant method to learnnonlinear classifiers. PR NPTEL course – p.4/
  • We have been discussing SVM method for learningclassifiers. - The basic idea is to transform the feature space andlearn a linear classifier in the new space. - Using Kernel functions we can do this mappingimplicitly. - Thus Kernels give us an elegant method to learnnonlinear classifiers. - We can use the same idea in regression problemsalso. PR NPTEL course – p.5/

Kernel Trick

  • We use φ

m

→ H

to map pattern vectors into appropriate high dimensional space.

  • Kernel fn allows us to compute innerproducts in

H

implicitly without using (or even knowing) φ

. PR NPTEL course – p.7/

Kernel Trick

  • We use φ

m

→ H

to map pattern vectors into appropriate high dimensional space.

  • Kernel fn allows us to compute innerproducts in

H

implicitly without using (or even knowing) φ .

  • Through kernel functions, many algorithms that useonly innerproducts can be implicitly executed in a highdimensional

H

. ( e.g., Fisher discriminant, regression etc). PR NPTEL course – p.8/

Support Vector Regression

  • Now we consider the regression problem. - Given training data

X

1 , y 1

X

n , y n

X

i

m , y i

, want to find ‘best’ function to predict y given

X

. PR NPTEL course – p.10/

Support Vector Regression

  • Now we consider the regression problem. - Given training data

X

1 , y 1

X

n , y n

X

i

m , y i

, want to find ‘best’ function to predict y given

X

.

  • We search in a parameterized class of functions g

X, W

w 1 φ 1

X

w m ′^ φ m ′^

X

b

W

T

X

b , where φ i

m

are some chosen functions. PR NPTEL course – p.11/

  • If we choose, φ i

X

x i (and hence, m

m ′ ) then it is a linear model.

  • Denoting

Z

X

m ′ , we are essentially learning a linear model in a transformed space. PR NPTEL course – p.13/

  • If we choose, φ i

X

x i (and hence, m

m ′ ) then it is a linear model.

  • Denoting

Z

X

m ′ , we are essentially learning a linear model in a transformed space.

  • This is in accordance with the basic idea of SVMmethod. PR NPTEL course – p.14/
  • If we choose, φ i

X

x i (and hence, m

m ′ ) then it is a linear model.

  • Denoting

Z

X

m ′ , we are essentially learning a linear model in a transformed space.

  • This is in accordance with the basic idea of SVMmethod. - We want to formulate the problem so that we can usethe Kernel idea. - Then, by using a kernel function, we never need tocompute or even precisely specify the mapping

. PR NPTEL course – p.16/

Loss function

  • As in a general regression problem, we need to find W to minimize

i

L

y i , g

X

i

, W

where

L

is a loss function. PR NPTEL course – p.17/

Loss function

  • As in a general regression problem, we need to find W to minimize

i

L

y i , g

X

i

, W

where

L

is a loss function.

  • This is the general strategy of empirical riskminimization. - We consider a special loss function that allows us touse the kernel trick. PR NPTEL course – p.19/

-insensitive loss

  • We employ ǫ -insensitive loss function: L ǫ

y i , g

X

i

, W

If

y i

g

X

i

, W

< ǫ

y i

g

X

i

, W

ǫ otherwise Here, ǫ is a parameter of the loss function. PR NPTEL course – p.20/