Top Banner
Introduction 3
33

Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

May 28, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Introduction

3

SVM
Page 2: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Data-analysis problems of interest

1. Build computational classification models (or “classifiers”) that assign patients/samples into two or more classes.

- Classifiers can be used for diagnosis, outcome prediction, and other classification tasks.

- E.g., build a decision-support system to diagnose primary and metastatic cancers from gene expression profiles of the patients:

5

Classifier model

Patient Biopsy Gene expressionprofile

Primary Cancer

Metastatic Cancer

Page 3: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Data-analysis problems of interest

2. Build computational regression models to predict values of some continuous response variable or outcome.

- Regression models can be used to predict survival, length of stay in the hospital, laboratory test values, etc.

- E.g., build a decision-support system to predict optimal dosage of the drug to be administered to the patient. This dosage is determined by the values of patient biomarkers, and clinical and demographics data:

6

Regression model

PatientBiomarkers, clinical and

demographics data

Optimal dosage is 5 IU/Kg/week

1 2.2 3 423 2 3 92 2 1 8

Page 4: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Data-analysis problems of interest

3. Out of all measured variables in the dataset, select the smallest subset of variables that is necessary for the most accurate prediction (classification or regression) of some variable of interest (e.g., phenotypic response variable).

- E.g., find the most compact panel of breast cancer biomarkers from microarray gene expression data for 20,000 genes:

7

Breast cancer tissues

Normaltissues

Page 5: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Data-analysis problems of interest

4. Build a computational model to identify novel or outlier patients/samples.

- Such models can be used to discover deviations in sample handling protocol when doing quality control of assays, etc.

- E.g., build a decision-support system to identify aliens.

8

Page 6: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Data-analysis problems of interest

5. Group patients/samples into several clusters based on their similarity.

- These methods can be used to discovery disease sub-types and for other tasks.

- E.g., consider clustering of brain tumor patients into 4 clusters based on their gene expression profiles. All patients have the same pathological sub-type of the disease, and clustering discovers new disease subtypes that happen to have different characteristics in terms of patient survival and time to recurrence after treatment.

9

Cluster #1

Cluster #2

Cluster #3

Cluster #4

Page 7: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

10

•Want to classify objects as boats and houses.

Page 8: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

11

• All objects before the coast line are boats and all objects after the coast line are houses. • Coast line serves as a decision surface that separates two classes.

Page 9: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

12

These boats will be misclassified as houses

Page 10: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

13

Longitude

Latitude

Boat

House

• The methods that build classification models (i.e., “classification algorithms”) operate very similarly to the previous example.• First all objects are represented geometrically.

Page 11: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

14

Longitude

Latitude

Boat

House

Then the algorithm seeks to find a decision surface that separates classes of objects

Page 12: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Basic principles of classification

15

Longitude

Latitude

? ? ?

? ? ?

These objects are classified as boats

These objects are classified as houses

Unseen (new) objects are classified as “boats” if they fall below the decision surface and as “houses” if the fall above it

Page 13: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

The Support Vector Machine (SVM) approach

16

• Support vector machines (SVMs) is a binary classification algorithm that offers a solution to problem #1.

• Extensions of the basic SVM algorithm can be applied to solve problems #1-#5.

• SVMs are important because of (a) theoretical reasons:- Robust to very large number of variables and small samples

- Can learn both simple and highly complex classification models

- Employ sophisticated mathematical principles to avoid overfitting

and (b) superior empirical results.

Page 14: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Main ideas of SVMs

17

Cancer patientsNormal patientsGene X

Gene Y

• Consider example dataset described by 2 genes, gene X and gene Y• Represent patients geometrically (by “vectors”)

Page 15: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Main ideas of SVMs

18

• Find a linear decision surface (“hyperplane”) that can separate patient classes and has the largest distance (i.e., largest “gap” or “margin”) between border-line patients (i.e., “support vectors”);

Cancer patientsNormal patientsGene X

Gene Y

Page 16: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Main ideas of SVMs

19

• If such linear decision surface does not exist, the data is mapped into a much higher dimensional space (“feature space”) where the separating decision surface is found;• The feature space is constructed via very clever mathematical

projection (“kernel trick”).

Gene Y

Gene X

Cancer

Normal

Cancer

Normal

kernel

Decision surface

Page 17: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Necessary mathematical concepts

21

Page 18: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

How to represent samples geometrically?Vectors in n-dimensional space (Rn)

• Assume that a sample/patient is described by n characteristics (“features” or “variables”)

• Representation: Every sample/patient is a vector in Rn with tail at point with 0 coordinates and arrow-head at point with the feature values.

• Example: Consider a patient described by 2 features: Systolic BP = 110 and Age = 29.

This patient can be represented as a vector in R2:

22Systolic BP

Age

(0, 0)

(110, 29)

Page 19: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

0100

200300

050

100

1502000

20

40

60

How to represent samples geometrically?Vectors in n-dimensional space (Rn)

Patient 3 Patient 4

Patient 1Patient 2

23

Patient id

Cholesterol (mg/dl)

Systolic BP (mmHg)

Age (years)

Tail of the vector

Arrow-head of the vector

1 150 110 35 (0,0,0) (150, 110, 35)2 250 120 30 (0,0,0) (250, 120, 30)3 140 160 65 (0,0,0) (140, 160, 65)4 300 180 45 (0,0,0) (300, 180, 45)

Age

(yea

rs)

Page 20: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

0100

200300

050

100

1502000

20

40

60

How to represent samples geometrically?Vectors in n-dimensional space (Rn)

Patient 3 Patient 4

Patient 1Patient 2

24

Age

(yea

rs)

Since we assume that the tail of each vector is at point with 0 coordinates, we will also depict vectors as points (where the arrow-head is pointing).

Page 21: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Purpose of vector representation• Having represented each sample/patient as a vector allows

now to geometrically represent the decision surface that separates two groups of samples/patients.

• In order to define the decision surface, we need to introduce some basic math elements…

25

0 1 2 3 4 5 6 70

1

2

3

4

5

6

7

0 1 2 3 4 5 6 7

0

5

100

1

2

3

4

5

6

7

A decision surface in R2 A decision surface in R3

Page 22: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Hyperplanes as decision surfaces

• A hyperplane is a linear decision surface that splits the space into two parts;

• It is obvious that a hyperplane is a binary classifier.

32

0 1 2 3 4 5 6 70

1

2

3

4

5

6

7

0 1 2 3 4 5 6 7

0

5

100

1

2

3

4

5

6

7

A hyperplane in R2 is a line A hyperplane in R3 is a plane

A hyperplane in Rn is an n-1 dimensional subspace

Page 23: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Equation of a hyperplane

34

Consider the case of R3:

An equation of a hyperplane is defined by a point (P0) and a perpendicular vector to the plane ( ) at that point.w&

P0P

w&

0x&

x&

0xx &&−

Define vectors: and , where P is an arbitrary point on a hyperplane.00 OPx =& OPx =&

A condition for P to be on the plane is that the vector is perpendicular to :

The above equations also hold for Rn when n>3.

0xx &&− w&

0)( 0 =−⋅ xxw &&&

00 =⋅−⋅ xwxw &&&&or

define 0xwb &&⋅−=

0=+⋅ bxw &&

O

Page 24: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Equation of a hyperplane

35

04364

043),,()6,1,4(043)6,1,4(

04343)4210(

)7,1,0()6,1,4(

)3()2()1(

)3()2()1(

0

0

=++−⇒

=+⋅−⇒=+⋅−⇒

=+⋅⇒=−−−=⋅−=

−=−=

xxxxxx

xxwxwb

Pw

&

&&

&&

&

P0

w&

043 =+⋅ xw &&

What happens if the b coefficient changes? The hyperplane moves along the direction of . We obtain “parallel hyperplanes”.

w&

Example

010 =+⋅ xw &&

050 =+⋅ xw &&

wbbD &/21 −=Distance between two parallel hyperplanes and is equal to .

01 =+⋅ bxw && 02 =+⋅ bxw &&

+ direction

- direction

Page 25: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

(Derivation of the distance between two parallel hyperplanes)

36

w&

01 =+⋅ bxw &&

02 =+⋅ bxw &&

wbbwtD

wbbt

bwtb

bwtbbxw

bwtxw

bwtxwbxw

wtwtDwtxx

&&

&

&

&&&

&&&

&&&

&&

&&

&&&

/

/)(

0

0)(

0

0)(0

21

221

22

1

22

111

22

1

21

22

12

−==⇒

−=

=++−

=++−+⋅

=++⋅

=++⋅=+⋅

==

+=

1x&

2x&

wt &

Page 26: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Recap

37

We know…• How to represent patients (as “vectors”)• How to define a linear decision surface (“hyperplane”)

We need to know…• How to efficiently compute the hyperplane that separates

two classes with the largest “gap”?

Î Need to introduce basics of relevant optimization theory

Cancer patientsNormal patientsGene X

Gene Y

Page 27: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Case 1: Linearly separable data; “Hard-margin” linear SVM

Given training data:

47

}1,1{,...,,,...,,

21

21

+−∈∈

N

nN

yyyRxxx &&&

Positive instances (y=+1)Negative instances (y=-1)

• Want to find a classifier (hyperplane) to separate negative instances from the positive ones.• An infinite number of such

hyperplanes exist.• SVMs finds the hyperplane that

maximizes the gap between data points on the boundaries (so-called “support vectors”).• If the points on the boundaries

are not informative (e.g., due to noise), SVMs will not do well.

Page 28: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

w&Since we want to maximize the gap,

we need to minimize

or equivalently minimize

Statement of linear SVM classifier

48

Positive instances (y=+1)Negative instances (y=-1)

0=+⋅ bxw &&

1+=+⋅ bxw &&

1−=+⋅ bxw &&

The gap is distance between parallel hyperplanes:

and

Or equivalently:

We know that

Therefore:

1−=+⋅ bxw &&

1+=+⋅ bxw &&

0)1( =++⋅ bxw &&

0)1( =−+⋅ bxw &&

wbbD &/21 −=

wD &/2=

221 w& ( is convenient for taking derivative later on)2

1

Page 29: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

In summary:

Want to minimize subject to for i = 1,…,NThen given a new instance x, the classifier is

Statement of linear SVM classifier

49

Positive instances (y=+1)Negative instances (y=-1)

0=+⋅ bxw &&

1+≥+⋅ bxw &&

1−≤+⋅ bxw &&In addition we need to impose constraints that all instances are correctly classified. In our case:

ifif

Equivalently:

1−≤+⋅ bxw i&&

1+≥+⋅ bxw i&&

1−=iy1+=iy

1)( ≥+⋅ bxwy ii&&

221 w& 1)( ≥+⋅ bxwy ii

&&

)()( bxwsignxf +⋅=&&&

Page 30: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Case 2: Not linearly separable data;“Soft-margin” linear SVM

55

Want to minimize subject to for i = 1,…,N

Then given a new instance x, the classifier is

∑=

+N

iiCw

1

221 ξ&

iii bxwy ξ−≥+⋅ 1)( &&

)()( bxwsignxf +⋅=&&

Assign a “slack variable” to each instance , which can be thought of distance from the separating hyperplane if an instance is misclassified and 0 otherwise.

0≥iξ

00 0

00

00

0 00

0

0

00

0What if the data is not linearly separable? E.g., there are outliers or noisy measurements, or the data is slightly non-linear.

Want to handle this case without changing the family of decision functions.

Approach:

Page 31: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Case 3: Not linearly separable data;Kernel trick

58

Gene 2

Gene 1

Tumor

Normal

Tumor

Normal?

?

Data is not linearly separable in the input space

Data is linearly separable in the feature space obtained by a kernel

kernel

Φ

HR →Φ N:

Page 32: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Example of benefits of using a kernel

65

)2(x

)1(x

1x&

2x&

3x&

4x&

• Data is not linearly separable in the input space (R2).

• Apply kernelto map data to a higher dimensional space (3-dimensional) where it is linearly separable.

2)(),( zxzxK &&&&⋅=

[ ]

)()(222

)(),(

2)2(

)2()1(

2)1(

2)2(

)2()1(

2)1(

2)2(

2)2()2()2()1()1(

2)1(

2)1(

2)2()2()1()1(

2

)2(

)1(

)2(

)1(2

zxzzz

z

xxx

xzxzxzxzx

zxzxzz

xx

zxzxK

&&

&&&&

Φ⋅Φ=⋅=++=

=+=⋅=⋅=

Page 33: Support Vector Machines without Tears · 2017-07-10 · The Support Vector Machine (SVM) approach. 16 • Support vector machines (SVMs) is a binary classification algorithm that

Example of benefits of using a kernel

66

=Φ2

)2(

)2()1(

2)1(

2)(xxx

xx&Therefore, the explicit mapping is

)2(x

)1(x

1x&

2x&

3x&

4x&

2)2(x

2)1(x

)2()1(2 xx

21 , xx &&

43 , xx &&

kernel

Φ