From bfa265e486a66188fe7e8485617dd70f07e9e3ad Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 10 Oct 2022 21:43:06 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/srcnn_l1b_l2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py
index 89df1a27..483bcacd 100644
--- a/modules/deeplearning/srcnn_l1b_l2.py
+++ b/modules/deeplearning/srcnn_l1b_l2.py
@@ -718,7 +718,7 @@ def analyze():
     print(grd_lr.shape)
     leny, lenx = grd_lr.shape
     rnd = np.random.normal(loc=0, scale=0.001, size=grd_lr.size)
-    grd_lr += rnd
+    grd_lr += rnd.reshape(grd_lr.shape)
     grd_lr = np.where(grd_lr < 0, 0, grd_lr)
     grd_lr = np.where(grd_lr > 1, 1, grd_lr)
 
-- 
GitLab