From 242182e57cc33383b22b88e651514f45fe54af26 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 28 Aug 2023 12:01:47 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/cloud_opd_fcn_abi.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/deeplearning/cloud_opd_fcn_abi.py b/modules/deeplearning/cloud_opd_fcn_abi.py
index 61702b4b..4bff2d3d 100644
--- a/modules/deeplearning/cloud_opd_fcn_abi.py
+++ b/modules/deeplearning/cloud_opd_fcn_abi.py
@@ -897,11 +897,11 @@ def run_restore_static(directory, ckpt_dir, out_file=None):
         y_hi, x_hi = (Y_LEN // 4) + 1, (X_LEN // 4) + 1
         np.save(out_file,
                 [np.squeeze(labels), preds.argmax(axis=3),
-                 denormalize(inputs[:, 1:y_hi, 1:x_hi, 0], 'temp_11_0um_nom', mean_std_dct),
-                 denormalize(inputs[:, 1:y_hi, 1:x_hi, 1], 'refl_0_65um_nom', mean_std_dct),
-                 denormalize(inputs[:, 1:y_hi, 1:x_hi, 2], 'refl_0_65um_nom', mean_std_dct),
+                 inputs[:, 1:y_hi, 1:x_hi, 0],
+                 descale(inputs[:, 1:y_hi, 1:x_hi, 1], 'refl_0_65um_nom', mean_std_dct),
+                 descale(inputs[:, 1:y_hi, 1:x_hi, 2], 'refl_0_65um_nom', mean_std_dct),
                  inputs[:, 1:y_hi, 1:x_hi, 3],
-                 inputs[:, 1:y_hi, 1:x_hi, 4]])
+                 descale(inputs[:, 1:y_hi, 1:x_hi, 4], label_param, mean_std_dct)])
 
 
 def run_evaluate_static(in_file, out_file, ckpt_dir):
-- 
GitLab