A Multiclase Máquina de vectores de soporte (SVM) is an advanced version of the traditional Support Vector Machine, designed to handle problems where data can belong to more than two classes. Unlike binary SVM, which is limited to separating two classes, multi-class SVM can classify data into multiple categories by employing strategies such as one-vs-all (OvA) o uno contra uno (OvO).
En el enfoque uno contra todos, el algorithm trains a separate SVM for each class, treating the current class as positive and all others as negative. This results in several binary classifiers, and the classifier that produces the highest score during prediction determines the final class label. Conversely, the one-vs-one method involves training a classifier for every pair of classes, leading to a vast number of classifiers, particularly when the number of classes is large.
Multi-class SVMs maintain the core principles of SVM, which include maximizing the margin between classes and using a función kernel to transform data into a higher-dimensional space if necessary. Commonly used kernel functions include linear, polynomial, and radial basis function (RBF) kernels, which help SVMs to effectively deal with non-linear data distributions.
Los SVM de múltiples clases se utilizan ampliamente en varias aplicaciones, incluyendo clasificación de imágenes, text categorization, and bioinformatics, due to their robustness and effectiveness in handling complex datasets. By leveraging the principles of SVM, these algorithms provide strong performance in distinguishing among multiple categories, making them a popular choice in aprendizaje automático tareas.