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
Not all estimators in cuml match the expected scikit-learn signatures for fit/fit_transform. In particular, many estimators are missing a y parameter to fit/fit_transform in cases where y would be ignored (but scikit-learn still requires it to be there). This can lead to issues when trying to switch between scikit-learn and cuml estimators.
We should:
Add a test that ensures the standard methods (fit/fit_transform/transform/predict) match the expected standard signatures
Fix cases where they don't
The text was updated successfully, but these errors were encountered:
Not all estimators in cuml match the expected scikit-learn signatures for
fit
/fit_transform
. In particular, many estimators are missing ay
parameter tofit
/fit_transform
in cases wherey
would be ignored (but scikit-learn still requires it to be there). This can lead to issues when trying to switch between scikit-learn and cuml estimators.We should:
fit
/fit_transform
/transform
/predict
) match the expected standard signaturesThe text was updated successfully, but these errors were encountered: