Version 0.10.0 (ongoing)#
Changelog#
Bug fixes#
Make sure that
Substitution
is working withpython -OO
that replace__doc__
byNone
. #953 bu Guillaume Lemaitre.
Compatibility#
Maintenance release for be compatible with scikit-learn >= 1.0.2. #946, #947, #949 by Guillaume Lemaitre.
Deprecation#
The parameter
n_jobs
has been deprecated from the classesADASYN
,BorderlineSMOTE
,SMOTE
,SMOTENC
,SMOTEN
, andSVMSMOTE
. Instead, pass a nearest neighbors estimator wheren_jobs
is set. #887 by Guillaume Lemaitre.The parameter
base_estimator
is deprecated and will be removed in version 0.12. It is impacted the following classes:BalancedBaggingClassifier
,EasyEnsembleClassifier
,RUSBoostClassifier
. #946 by Guillaume Lemaitre.
Enhancements#
Add support to accept compatible
NearestNeighbors
objects by only duck-typing. For instance, it allows to accept cuML instances. #858 by NV-jpt and Guillaume Lemaitre.