March 2020
Intermediate to advanced
366 pages
9h 8m
English
Whereas some classification algorithms, such as neural networks, naturally lend themselves to using more than two classes, SVMs are binary classifiers by nature. They can, however, be turned into multiclass classifiers.
Here, we will consider two different strategies:
For the k classes, this strategy thus requires the training of k number of different SVMs. During testing, all classifiers can express a +1 vote by predicting that an unseen sample belongs to their class.
In the end, an unseen sample is classified by the ensemble ...