From 9e2eec15c13a4e732f919283b9b0d1ee05dce82c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 10 Oct 2022 11:24:13 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn_l1b_l2.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 57ff96bb..018b2bf4 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -709,6 +709,10 @@ def analyze(): grd_lr = grd[::2, ::2] 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 = np.where(grd_lr < 0, 0, grd_lr) + grd_lr = np.where(grd_lr > 1, 1, grd_lr) x = np.arange(lenx) y = np.arange(leny) -- GitLab