From 4b8aac85219abf59690116bf54f657bb7dc0cf8f Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 28 Apr 2023 12:58:43 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/cloud_opd_srcnn_viirs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/deeplearning/cloud_opd_srcnn_viirs.py b/modules/deeplearning/cloud_opd_srcnn_viirs.py index fde9fd6d..e64337f6 100644 --- a/modules/deeplearning/cloud_opd_srcnn_viirs.py +++ b/modules/deeplearning/cloud_opd_srcnn_viirs.py @@ -685,9 +685,11 @@ def run_evaluate_static(in_file, out_file, ckpt_dir): refl = get_grid_values_all(h5f, 'super/refl_0_65um') ylen, xlen = refl.shape refl = refl[0:int(ylen/2), :] + bt = get_grid_values_all(h5f, 'orig/temp_11_0um') ylen, xlen = bt.shape bt = bt[0:int(ylen/2), :] + cld_opd = get_grid_values_all(h5f, 'super/' + label_param) ylen, xlen = cld_opd.shape cld_opd = cld_opd[0:int(ylen/2), :] -- GitLab