Multiclass Classification
In this section we're going to learn about Multiclass Classification.
We're going to start by constructing a multiclass classifier out of a collection of binary classifiers. There's actually two ways in which we can do that: by wiring them up according to the One Versus All configuration or the One Versus One configuration.
You'll see that a lot of binary classification metrics no longer work in multiclass classification, except for the confusion matrix. We will examine what a multiclass confusion matrix looks like, and introduce two new evaluation metrics: the Macro Average and the Micro Average.
9 Lessons