-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
RFC deprecate the SAMME.R algorithm in AdaBoostClassifier #26784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'd be +1 for that. (Also a good issue for @StefanieSenger if we decide to do it) |
@glemaitre Did you mean that SAMME.R is not present in the published paper? |
Yes, it is not published. I corrected my sentence. |
Is @StefanieSenger working on this already? If not, I would be willing to take it up.:) |
Hey @jpangas, I'm working on it already. :) |
For the record, I am +1 on deprecating |
So there's an with this deprecation which seems to be a two step deprecation really. One way to do this is:
Another alternative is to deprecate
The above two warnings don't really work together, I'm not sure how to proceed then. |
I think we need to go to the first scheme. I don't think we need to hurry by deprecating The first 2 cycles will make use buy time. |
I was trying to remove the whole |
Or, I can also implement the first version (only deprecating |
The first version will make it easier. |
While working on the following example (#26486), I found a couple of issues regarding the SAMME.R algorithm, which is the default algorithm in
AdaBoostClassifier
:For these two reasons, I think that we should deprecate this algorithm and remove the parameter
algorithm
from theAdaBoostClassifier
.In addition, I think that we should monitor the latest work on multiclass AdaBoost, where additional theoretical founding is revealed, cf. https://proceedings.neurips.cc/paper/2021/hash/17f5e6db87929fb55cebeb7fd58c1d41-Abstract.html
The text was updated successfully, but these errors were encountered: