From 9b6ed3c7de45fbc8f85bd7c04c8e84dd2e919650 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 13 Dec 2022 11:02:49 -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 1752ead3..fe437eea 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -276,7 +276,7 @@ class SRCNN: tmp = np.where(tmp > 1.0, 1.0, tmp) tmp = np.where(np.isnan(tmp), 0, tmp) tmp = resample_2d_linear(x_2, y_2, tmp, t, s) - tmp = tmp[y_k, x_k] + tmp = tmp[:, y_k, x_k] data_norm.append(tmp) # --------- data = np.stack(data_norm, axis=3) -- GitLab