Skip to content

Commit 682da8f

Browse files
authored
BUG: don't try to invoke pdb while init'ing models (#670)
1 parent e6183d6 commit 682da8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: dask_ml/model_selection/_incremental.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _score(model_and_meta, X, y, scorer):
111111

112112
def _create_model(model, ident, **params):
113113
""" Create a model by cloning and then setting params """
114-
with log_errors(pdb=True):
114+
with log_errors():
115115
model = clone(model).set_params(**params)
116116
return model, {"model_id": ident, "params": params, "partial_fit_calls": 0}
117117

0 commit comments

Comments
 (0)