diff --git a/modules/deeplearning/cloud_opd_srcnn_viirs.py b/modules/deeplearning/cloud_opd_srcnn_viirs.py index 8701961327e537037346a3f989e63a79e5d3eb19..e6d65495bd1be4bda441304c42b2374415051dd8 100644 --- a/modules/deeplearning/cloud_opd_srcnn_viirs.py +++ b/modules/deeplearning/cloud_opd_srcnn_viirs.py @@ -777,9 +777,9 @@ def run_evaluate_static(in_file, out_file, ckpt_dir): print(refl.shape, cld_opd.shape, cld_opd_hres.shape) cld_opd_sres_out = cld_opd_sres[0, :, :, 0] - refl_out = refl[0, 1:ylen-2, 1:xlen-2] - cld_opd_out = cld_opd[0, 1:ylen-2, 1:xlen-2] - cld_opd_hres = cld_opd_hres[1:ylen-2, 1:xlen-2] + 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] 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)