From 9c658cdedd7870c7434d6085c919b135b956a275 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 20 Oct 2022 15:29:52 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/srcnn_l1b_l2.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py
index 9cc86e8c..89cbdfad 100644
--- a/modules/deeplearning/srcnn_l1b_l2.py
+++ b/modules/deeplearning/srcnn_l1b_l2.py
@@ -29,7 +29,7 @@ TRACK_MOVING_AVERAGE = False
 EARLY_STOP = True
 
 NOISE_TRAINING = False
-NOISE_STDDEV = 0.10
+NOISE_STDDEV = 0.01
 DO_AUGMENT = True
 
 DO_ZERO_OUT = False
@@ -218,9 +218,9 @@ class SRCNN:
 
         add_noise = None
         noise_scale = None
-        if is_training:
+        if is_training and NOISE_TRAINING:
             add_noise = True
-            noise_scale = 0.005
+            noise_scale = NOISE_STDDEV
 
         data_norm = []
         for param in data_params:
-- 
GitLab