SVM Flashcards

1
Q

Maximum Margin Classifier/Separator

A

The decision boundary that maximizes separation boundary between separable classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Soft Margin

A

In SVC, the amount of error allowed when determining the width of the ‘street’.

The parameter is controlled by C in sklearn

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

SVC Kernels

A

How the SVC/SVM transforms the data to create the hyperplane for separating the data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Linear Kernel

A

No data transformation to determine the decision boundary in SVM/SVC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Non linear kernel

A

Transformation of the data into a higher number of dimensions to determine the hyperplane that separates the classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When do you use non linear kernel in SVM

A

When the data is intermediate (either in number of samples or number of features). When features or samples are large, then the non linear kernel may be predictive but not very performant.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Polynomial Kernel

A

Polynomial transformation of the data into higher number of dimensions in SVM

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Radial Basis Function (RBF) Kernel

A

Closest observations for a particular datapoint has a lot more weight to classify the current datapoint compared to observations that are further away.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Gamma Parameter (SVM)

A

In RBF Kernel, this parameter scales the squared distances between two datapoints to determine how much influence nearest datapoints have on the classification of current point.

Higher gamma = More influence the two datapoints have on each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Support Vectors

A

Data points closest to the decision boundary that have the greatest influence on the position of the hyperplane

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

SVM in 1 Sentence

A

A classification method that uses a hyperplane on higher dimensional transformed data to separate classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly