Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
n_iter is now keyword-only
  • Loading branch information
PGijsbers committed Oct 17, 2022
commit 647341c5155500a5c773f68fc184d744be644849
Original file line number Diff line number Diff line change
Expand Up @@ -2059,7 +2059,7 @@ def test__extract_trace_data(self):
clf = sklearn.model_selection.RandomizedSearchCV(
sklearn.neural_network.MLPClassifier(),
param_grid,
num_iters,
n_iter=num_iters,
)
# just run the task on the model (without invoking any fancy extension & openml code)
train, _ = task.get_train_test_split_indices(0, 0)
Expand Down