From 19384ac339fd817f9d02e70cfc22972b102a46ac Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 27 Jun 2023 22:05:26 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/cloud_opd_srcnn_viirs.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/deeplearning/cloud_opd_srcnn_viirs.py b/modules/deeplearning/cloud_opd_srcnn_viirs.py index e6d65495..4f013aa0 100644 --- a/modules/deeplearning/cloud_opd_srcnn_viirs.py +++ b/modules/deeplearning/cloud_opd_srcnn_viirs.py @@ -775,11 +775,12 @@ def run_evaluate_static(in_file, out_file, ckpt_dir): # refl_out[0:(ylen+2*border), 0:(xlen+2*border)] = refl[0, :, :] # cld_opd_out[0:(ylen+2*border), 0:(xlen+2*border)] = cld_opd[0, :, :] print(refl.shape, cld_opd.shape, cld_opd_hres.shape) + ylen_in, xlen_in = cld_opd_hres.shape cld_opd_sres_out = cld_opd_sres[0, :, :, 0] - refl_out = refl[0, 1:ylen, 1:xlen] - cld_opd_out = cld_opd[0, 1:ylen, 1:xlen] - cld_opd_hres = cld_opd_hres[1:ylen, 1:xlen] + refl_out = refl[0, 1:ylen_in-1, 1:xlen_in-1] + cld_opd_out = cld_opd[0, 1:ylen_in-1, 1:xlen_in-1] + cld_opd_hres = cld_opd_hres[1:ylen_in-1, 1:xlen_in-1] print(cld_opd_sres_out.shape, refl_out.shape, cld_opd_out.shape, cld_opd_hres.shape) refl_out = denormalize(refl_out, 'refl_0_65um_nom', mean_std_dct) -- GitLab