-
Book Overview & Buying
-
Table Of Contents
Hands-On Artificial Intelligence for IoT - Second Edition
By :
Using Support Vector Machines (SVMs) is arguably the most used ML technique for classification. The main idea behind SVMs is that we find an optimal hyperplane with a maximum margin separating the two classes. If the data is linearly separable, the process of finding the hyperplane is straightforward, but if it isn’t linearly separable, then the kernel trick is used to make the data linearly separable in some transformed high-dimensional feature space.
SVM is considered a non-parametric supervised learning algorithm. The main idea of SVM is to find a maximal margin separator: a separating hyperplane that is farthest from the training samples presented
Consider the following diagram. The red dots represent class 1, for which the output should be 1, and the blue dots represent class 2, for which the output should be -1. There can be many lines that can separate the red dots from the blue ones. The diagram demonstrates three such...