Skip to content

Commit

Permalink
Remove _check_param_grid (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosfelt authored Jun 14, 2022
1 parent a067b27 commit 1221f4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions summit/benchmarks/experimental_emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
GridSearchCV,
ParameterGrid,
)
from sklearn.model_selection._search import BaseSearchCV, _check_param_grid
from sklearn.model_selection._search import BaseSearchCV
from sklearn.base import (
BaseEstimator,
RegressorMixin,
Expand Down Expand Up @@ -1118,7 +1118,6 @@ def __init__(
return_train_score=return_train_score,
)
self.param_grid = param_grid
_check_param_grid(param_grid)

def _run_search(self, evaluate_candidates):
"""Search all candidates in param_grid"""
Expand Down

0 comments on commit 1221f4c

Please sign in to comment.