ML-Lec9-SVM

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

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.

16 Terms

1
New cards

What is a Support Vector Machine (SVM)?

A powerful supervised machine learning algorithm used for classification, regression, and outlier detection tasks.

2
New cards

What is the primary goal of the SVM algorithm?

To create the best line or decision boundary that separates n-dimensional space into classes.

3
New cards

What is a hyperplane in the context of SVM?

The best decision boundary that creates the largest separation or margin between two classes.

4
New cards

What do support vectors represent?

The samples that are closest to the decision boundary and directly affect the location of the optimal decision boundary.

5
New cards

What are the two types of SVM?

Simple SVM, which is used for linear data, and Kernel SVM, which adds flexibility for non-linear data.

6
New cards

Why are SVMs considered effective for machine learning?

They can handle both classification and regression on linear and non-linear data, and they find complex relationships without extensive data transformations.

7
New cards

What are some applications of SVM?

Text classification, image classification, spam detection, handwriting identification, gene expression analysis, and face detection.

8
New cards

What is the significance of the maximum-margin hyperplane?

It represents the decision boundary that maximizes the margin between classes, leading to better generalization.

9
New cards

How does a linear SVM classifier work?

It makes a straight line between two classes, separating the data points into categories.

10
New cards

What is the primary disadvantage of using SVMs for large datasets?

SVMs work best on small sample sets due to high training time.

11
New cards

What is the distance expression for a point x to a line wx + b = 0?

The distance can be computed using the expression that involves the weight vector and normal vector.

12
New cards

How can SVM ignore outliers?

By finding the best hyperplane that maximizes the margin while maintaining robustness to outliers.

13
New cards

What is a kernel in SVM?

A function that transforms the data into a higher dimension to allow for a more flexible decision boundary.

14
New cards

What characterizes the decision boundary created by SVMs?

It can be non-linear and can separate data points into classes through various kernel functions.

15
New cards

What is a linear kernel?

A commonly used kernel for text classification that is faster and suited for linearly separable data.

16
New cards

What does the term 'margin' refer to in SVMs?

The distance between the hyperplane and the closest data points from either class.