From 83027b6f2bd879ee66bdb98c61f2db9d1497513b Mon Sep 17 00:00:00 2001 From: Hamel Husain Date: Sun, 21 Apr 2019 14:03:09 -0700 Subject: [PATCH] Update 05b_early_stopping.ipynb Is this supposed to be set to True? --- dev_course/dl2/05b_early_stopping.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ]