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
I have a custom implementation of Successive Halving scikit-learn/scikit-learn#13900 which inherits from BaseSearchCV. When I use run_model_on_task I'm getting the following warning:
Warning! Using subclass BaseSearchCV other than {GridSearchCV, RandomizedSearchCV}. Should implement param check.
I tried to look at the code but couldn't find what those param checks were. It seems that none of the metric are computed on that estimator.
Any help appreciated. Thanks!
Versions
OpenML 0.11.0dev
The text was updated successfully, but these errors were encountered:
Hi Nicolas, this basically means that we could not find the standardized way where the param_grid was stored, so we review this on a case by case basis.
We identified them for Grid Search and Random Search. If you point me towards the attribute name for where the param grid is stored for SH, it should be a one liner to add this to the OpenML lib.
Description
I have a custom implementation of Successive Halving scikit-learn/scikit-learn#13900 which inherits from BaseSearchCV. When I use
run_model_on_task
I'm getting the following warning:I tried to look at the code but couldn't find what those param checks were. It seems that none of the metric are computed on that estimator.
Any help appreciated. Thanks!
Versions
OpenML 0.11.0dev
The text was updated successfully, but these errors were encountered: