multi-class-classification
Source: google-ml-course
Multi-class classification
- Building off on
binary classification
–> do one-vs-all classification, e.g. for the classes red-blue-yellow:
- Red vs not red
- Blue vs not blue
- Yellow vs not yellow
- For unique classes: SoftMax can be used, where the sum of the outputs is one
- For non-unique classes: one-vs-all classification with multiple logistic regressions , the sum of the outputs need not be one