You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some estimator checks use isinstance(estimator, ClassifierMixin). They should use base.is_classifier instead. Or we should implement __instancecheck__ on ClassifierMixin so that they are equivalent.
The text was updated successfully, but these errors were encountered:
Some estimator checks use
isinstance(estimator, ClassifierMixin)
. They should usebase.is_classifier
instead. Or we should implement__instancecheck__
onClassifierMixin
so that they are equivalent.The text was updated successfully, but these errors were encountered: