Open super-ask opened 3 years ago
You can extend AdaBoost to multiclass, but there are two problems you would need to overcome: 1) I am not sure how you would predict multiple (i.e. >2) classes with stumps. I'd say you just can't a simple decission tree classifier like I did. You'd have to think how you classify multiple labels with trees that only draw one decision boundary. 2) The voting mechanism in my implementation is such that it takes the sign of the sum of individual predictions by the stumps. I can do this because I only have two labels: 1 and -1. In a multiclass setting, this wouldn't work. You'd have to take the mode of your stump predictions.
Hi @AlvaroCorrales,
Just a quick question please. I thought M1 is the extension of AdaBoost for multi-class? I tried using this implementation for multi-class, the output is just a binary classification Confusion matrix:
Classification report:
What's you suggestion working with multi-class using this implementation?