From 3e4d943aa032aa7e92b84776a1fcab5d2c8db2a4 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 20 Oct 2023 11:26:18 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/icing_fcn.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/deeplearning/icing_fcn.py b/modules/deeplearning/icing_fcn.py index 8d8d009c..89166211 100644 --- a/modules/deeplearning/icing_fcn.py +++ b/modules/deeplearning/icing_fcn.py @@ -26,6 +26,8 @@ NUM_EPOCHS = 60 EARLY_STOP = True +PATIENCE = 7 + USE_EMA = False EMA_OVERWRITE_FREQUENCY = 5 EMA_MOMENTUM = 0.99 @@ -883,7 +885,7 @@ class IcingIntensityFCN: best_test_mcc = 0 if EARLY_STOP: - es = EarlyStop() + es = EarlyStop(patience=PATIENCE) for epoch in range(NUM_EPOCHS): self.train_loss.reset_states() -- GitLab