From 6cc76fc74ba2086e286d0ab3311eed405cfa6424 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 26 Dec 2022 15:27:33 -0600 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 9b89fc7e..739f1151 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -272,7 +272,7 @@ class SRCNN: tmp = input_data[:, label_idx, :, :] tmp = tmp.copy() tmp = np.where(np.isnan(tmp), 0, tmp) - tmp = smooth_2d(tmp, sigma=1.0) + #tmp = smooth_2d(tmp, sigma=1.0) tmp = tmp[:, slc_y_2, slc_x_2] tmp = resample_2d_linear(x_2, y_2, tmp, t, s) tmp = tmp[:, y_k, x_k] -- GitLab