diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py
index 801a0914545427eb1798df28c07b3ac86a490a68..b5d99130c9362ea36af418d47edf790d04ebc2ba 100644
--- a/modules/deeplearning/srcnn_l1b_l2.py
+++ b/modules/deeplearning/srcnn_l1b_l2.py
@@ -752,7 +752,8 @@ def run_evaluate_static_2(in_file, out_file, ckpt_dir):
     nn = SRCNN()
     out_sr = nn.run_evaluate(data, ckpt_dir)
     if label_param != 'cloud_fraction':
-        out_sr = denormalize(out_sr, label_param, mean_std_dct)
+        # out_sr = denormalize(out_sr, label_param, mean_std_dct)
+        pass
     if out_file is not None:
         np.save(out_file, out_sr)
     else: