Data Mining Chapter 9

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/7

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

8 Terms

1
New cards

Support Vector Machine

Out of box classifier (can be used immediately without modification). An extension of the support vector classifier that allows for non-linear boundaries

2
New cards

Hyperplane

Flat objetct that divides the space of dimension

Divides the p-dimensional space into two parts

3
New cards

Maximal Margin Classifier

The optimal separating hyperplane

Hyperplane that is the furthest away from all training observations

Tends to overfit when p is larger

4
New cards

Support vectors

Vectors that are on the margin, observations that are “supporting” the margin

5
New cards

Support Vector Regressor

Extends the SVM framework to continuous response variables, meaning it can handle regression problems where the target value is numeric and continuous

6
New cards

Downfalls of Maximal Margin Classifiers

Maximal margin classifier can be overly sensitive to changes in a single observation

Maximal margin classifier is only applicable when classes are perfectly separable

7
New cards

Support vector classifier

Also known as the soft margin classifier

Have a “budget” as to how many observations are allowed to be on the wrong side of the hyperplane

8
New cards

Support Vector Machines

Extends support vector classifiers to non-linear decision boundaries

Enlarge the feature space using predefined kernels

● Kernels - a function that quantifies the similarity of two observations

○ Linear kernel

○ Polynomial kernel

○ Radial kernel