Skip to content

Commit

Permalink
Minor change, removed exit() after early stopping.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcBS committed Sep 10, 2019
1 parent 1f253bd commit 9c5a28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras_wrapper/extra/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ def evaluate(self, epoch, counter_name='epoch'):
str(counter_name), epoch, self.metric_check, str(counter_name), self.best_epoch,
self.best_score if not self.want_to_minimize else -self.best_score))
self.model.stop_training = True
exit(1)
#exit(1)


class LearningRateReducer(KerasCallback):
Expand Down

0 comments on commit 9c5a28e

Please sign in to comment.