From aa0ffb1bde9806fb2978dc620a2cb63923522236 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 26 Dec 2022 16:36:12 -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 739f1151..9b89fc7e 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