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
When using this library with scikit-learn version 1.1 or above, the following exception is thrown:
evolutionary_search/cv.py", line 12, in <module>
from sklearn.model_selection._search import BaseSearchCV, check_cv, _check_param_grid
ImportError: cannot import name '_check_param_grid' from 'sklearn.model_selection._search'
This happens because the (private) method ParameterGrid._check_param_grid() of scikit-learn was deprecated, and its functionality is now included within the ParameterGrid.__init__() method.
The text was updated successfully, but these errors were encountered:
When using this library with scikit-learn version 1.1 or above, the following exception is thrown:
This happens because the (private) method
ParameterGrid._check_param_grid()
of scikit-learn was deprecated, and its functionality is now included within theParameterGrid.__init__()
method.The text was updated successfully, but these errors were encountered: