From e72da921091010deb6d5bf627167123f438c475f Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 11 Oct 2022 20:45:44 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn_l1b_l2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 16c75a8b..89b1c31b 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -226,13 +226,14 @@ class SRCNN: for param in data_params: idx = params.index(param) tmp = input_data[:, idx, 3:131:2, 3:131:2] - # tmp = resample(y_64, x_64, tmp, s, t) tmp = resample_2d_linear(x_64, y_64, tmp, t, s) tmp = normalize(tmp, param, mean_std_dct, add_noise=add_noise, noise_scale=noise_scale) data_norm.append(tmp) # -------- idx = params.index('refl_0_65um_nom') tmp = input_data[:, idx, 3:131, 3:131] + # tmp = input_data[:, idx, 3:131:2, 3:131:2] + # tmp = resample_2d_linear(x_64, y_64, tmp, t, s) tmp = normalize(tmp, param, mean_std_dct, add_noise=add_noise, noise_scale=noise_scale) data_norm.append(tmp) # -------- -- GitLab