Skip to content

Commit

Permalink
add required option for sklearn.model_selection._validation._score 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ilario committed Oct 22, 2024
1 parent 181ec48 commit ecb8b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion summit/benchmarks/experimental_emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def test(self, **kwargs):
scorers = check_scoring(predictor, scoring)
else:
scorers = _check_multimetric_scoring(predictor, scoring)
scores_list.append(_score(predictor, X_test, y_test, scorers))
scores_list.append(_score(predictor, X_test, y_test, scorers, score_params = None))
scores_dict = _aggregate_score_dicts(scores_list)
for name in scoring:
scores = scores_dict.pop(name)
Expand Down

0 comments on commit ecb8b88

Please sign in to comment.