Concept

One-versus-one in SVM

When there are K > 2 classes, we are able to use one-vs-one classification. The process involves selecting two pairs of classes at a time, along with a test observation that is assigned for each of the paired classes. Then, during the classification phases, we keep track of each "success" (# of times the test observation is assigned to each of the K classes). After we have the tallies of successes, the final classification is performed on the class to which the test observation had the highest # of successes out of all the paired classes.

0

5

Updated 2020-03-08

Tags

Data Science

Related