From aa4ad32f0fd58488a8f38ff49cec32ac2dd5281d Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 16 May 2022 13:05:43 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/unet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deeplearning/unet.py b/modules/deeplearning/unet.py index 63dfec78..efe15ca3 100644 --- a/modules/deeplearning/unet.py +++ b/modules/deeplearning/unet.py @@ -748,7 +748,7 @@ class UNET: self.loss = tf.keras.losses.MeanSquaredError() # Regression # decayed_learning_rate = learning_rate * decay_rate ^ (global_step / decay_steps) - initial_learning_rate = 0.006 + initial_learning_rate = 0.002 decay_rate = 0.95 steps_per_epoch = int(self.num_data_samples/BATCH_SIZE) # one epoch decay_steps = int(steps_per_epoch / 2) -- GitLab