Support Vector Machines

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts and terminology related to Support Vector Machines (SVM) in Machine Learning.

Last updated 4:21 AM on 4/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

Support Vector Machine (SVM)

A powerful Machine Learning model used for classification, regression, and outlier detection.

2
New cards

Large Margin Classification

A method where the decision boundary of an SVM classifier is as far away from the closest training instances as possible.

3
New cards

Support Vectors

Instances located on the edge of the margin that fully support the decision boundary.

4
New cards

Hard Margin Classification

A strict approach that requires all instances to be off the street and on the correct side, only applicable to linearly separable data.

5
New cards

Soft Margin Classification

A more flexible approach that allows for some margin violations to balance the width of the street and accuracy.

6
New cards

Hyperparameter C

Controls the balance between maximizing the margin and minimizing margin violations in SVM.

7
New cards

Kernel Trick

A mathematical technique that allows SVM to work in high-dimensional space without explicitly adding more features.

8
New cards

Polynomial Kernel

A kernel that allows SVM to model complex relationships by using polynomial features.

9
New cards

Gaussian Radial Basis Function (RBF) Kernel

A similarity function used in SVM to transform input data into a higher-dimensional space.

10
New cards

Epsilon-Insensitive Loss

In SVM regression, it defines a width around the prediction line where errors do not penalize the model.

11
New cards

Scikit-Learn

A popular Python library used for machine learning, providing tools for implementing SVM and other algorithms.

12
New cards

Linear SVC

A Scikit-Learn class used for linear support vector classification.

13
New cards

SVR

Support Vector Regression class in Scikit-Learn that uses the kernel trick for regression tasks.

14
New cards

Margin Violations

Instances that fall inside the margin, which are allowed in soft margin classification to improve model generalization.

15
New cards

Feature Scaling

Standardizing features to ensure that the features contribute equally to the distance computation in SVM.

16
New cards

Grid Search

A method to tune hyperparameters by exhaustively searching over specified parameter values.

17
New cards