Skip to content

Commit

Permalink
BUG: don't try to invoke pdb while init'ing models (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
stsievert authored May 23, 2020
1 parent e6183d6 commit 682da8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask_ml/model_selection/_incremental.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _score(model_and_meta, X, y, scorer):

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

Expand Down

0 comments on commit 682da8f

Please sign in to comment.