0% found this document useful (0 votes)
17 views

Support Vector Machines (SVM)

Support Vector Machines (SVM) is a supervised learning algorithm that finds the optimal hyperplane to separate data points of different classes with the maximum margin. The hyperplane is a decision boundary dividing the space into two parts for binary classification; it can be a line in 2D space, a plane in 3D space, or a hyperplane for more dimensions. SVMs are commonly used for classification and regression analysis tasks.

Uploaded by

y.tarek
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Support Vector Machines (SVM)

Support Vector Machines (SVM) is a supervised learning algorithm that finds the optimal hyperplane to separate data points of different classes with the maximum margin. The hyperplane is a decision boundary dividing the space into two parts for binary classification; it can be a line in 2D space, a plane in 3D space, or a hyperplane for more dimensions. SVMs are commonly used for classification and regression analysis tasks.

Uploaded by

y.tarek
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Support Vector Machines (SVM)

What is SVM ??
A support vector machine (SVM) is a type of supervised learning
algorithm used for classification and regression analysis. SVMs are
based on the idea of finding a hyperplane that best divides a dataset
into two classes. The hyperplane is chosen such that it maximizes the
margin between the two classes.
Hyperplanes
● When the data is one-dimensional which means one attribute then the Support
Vector Classifier is a point in a one-dimensional number line.
● When the data are two-dimensional which means two attributes, a Support Vector
Classifier is a one-dimensional line in a two-dimensional space.
● When the data are three-dimensional which means three attributes, the Support
Vector Classifier forms a two-dimensional plane in a three-dimensional space.
● When the data are in 4 or more dimensions, the Support Vector Classifier is a
hyperplane.

You might also like