From edd60a10b8f87f8cb1c699ad24c90a737d180ac0 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 22 Aug 2022 21:17:40 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/espcn.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py index 50626c18..97e079ab 100644 --- a/modules/deeplearning/espcn.py +++ b/modules/deeplearning/espcn.py @@ -225,7 +225,11 @@ class ESPCN: # if label_param != 'cloud_fraction': # label = scale(label, label_param, mean_std_dct) - data = normalize(data, data_param, mean_std_dct, add_noise=True, noise_scale=0.005) + if is_training: + data = normalize(data, data_param, mean_std_dct, add_noise=True, noise_scale=0.005) + else: + data = normalize(data, data_param, mean_std_dct) + if label_param != 'cloud_fraction': label = normalize(label, label_param, mean_std_dct) -- GitLab