diff --git a/dev_course/dl2/05b_early_stopping.ipynb b/dev_course/dl2/05b_early_stopping.ipynb index 8f7531511..0596157b3 100644 --- a/dev_course/dl2/05b_early_stopping.ipynb +++ b/dev_course/dl2/05b_early_stopping.ipynb @@ -173,7 +173,7 @@ " self.learn = None\n", "\n", " def __call__(self, cb_name):\n", - " res = False\n", + " res = True\n", " for cb in sorted(self.cbs, key=lambda x: x._order): res = cb(cb_name) and res\n", " return res" ]