Concept

One-Versus-One (OVO) Classification

One-Versus-One (OVO) is a strategy for extending binary classifiers to solve multi-class classification problems. For a dataset with KK classes, it trains K(K1)/2K(K-1)/2 separate binary classifiers, one for each possible pair of classes. During prediction, a test instance is evaluated by all classifiers, and the class that receives the most predictions (majority voting) is chosen as the final output.

0

1

Updated 2026-07-04

Tags

Data Science