Reputation: 3057
I am trying to use AdaBoostClassifier with RandomForestClassifier on a multiclass multilabel problem/
I understand that AdaBoostClassifier supports multilabel output (wrong, it doesn't!), where y is the 'True labels for X'. Where am I going wrong please? Thanks!
Upvotes: 1
Views: 1271
Reputation: 394
There is no multi-label version of AdaBoost and the label should be the shape of samples number. To classify with multi-label data, you can refer some relative paper methods
Upvotes: 4