From 0adcd4c6b356f5137742e805dae04d1badb05b13 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Wed, 13 Apr 2022 09:48:01 -0500 Subject: [PATCH] minor --- modules/deeplearning/unet.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/deeplearning/unet.py b/modules/deeplearning/unet.py index 4b6f9302..3d7961de 100644 --- a/modules/deeplearning/unet.py +++ b/modules/deeplearning/unet.py @@ -25,14 +25,14 @@ BATCH_SIZE = 128 NUM_EPOCHS = 100 TRACK_MOVING_AVERAGE = False -EARLY_STOP = False +EARLY_STOP = True TRIPLET = False CONV3D = False -NOISE_TRAINING = False +NOISE_TRAINING = True NOISE_STDDEV = 0.10 -DO_AUGMENT = False +DO_AUGMENT = True img_width = 16 -- GitLab