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
Since 83f67ee, GridSearchCV has decision_function and friends, but only after fitting. I just tried to tune each of the binary classifiers in an OvR constructor separately:
Since 83f67ee 83f67ee,
GridSearchCV has decision_function and friends, but only after fitting. I
just tried to tune each of the binary classifiers in an OvR constructor
separately:
In the context of which, I consider this issue a sub-issue of #1805, and am therefore closing. But I would certainly like to see a review on #2854, and when a pair of people volunteer to finally push it through, I will happily rebase it.
Since 83f67ee,
GridSearchCV
hasdecision_function
and friends, but only after fitting. I just tried to tune each of the binary classifiers in an OvR constructor separately:... but this doesn't work; it fails with
because these methods are only available after
fit
has been called.(Actually, the same is true of
predict
andtransform
. It's as if the type of aGridSearchCV
changes after some of its methods have been called.)The text was updated successfully, but these errors were encountered: