diff --git a/modules/deeplearning/cloud_opd_srcnn_viirs.py b/modules/deeplearning/cloud_opd_srcnn_viirs.py
index 7de40750e7effb5b5723e60a91ec080e9cfd6a49..99aa67d839c1e5bf4aae5e8234cfcfe5bf8cc64e 100644
--- a/modules/deeplearning/cloud_opd_srcnn_viirs.py
+++ b/modules/deeplearning/cloud_opd_srcnn_viirs.py
@@ -695,6 +695,7 @@ def run_evaluate_static(in_file, out_file, ckpt_dir):
     cld_opd = get_grid_values_all(h5f, 'super/' + label_param)
     ylen, xlen = cld_opd.shape
     cld_opd = cld_opd[int(ylen/2):ylen, :]
+    cld_opd_hres = cld_opd.copy()
 
     refl = np.where(np.isnan(refl), 0, refl)
     refl = normalize(refl, 'refl_0_65um_nom', mean_std_dct)
@@ -748,7 +749,7 @@ def run_evaluate_static(in_file, out_file, ckpt_dir):
     cld_opd_out = denormalize(cld_opd_out, label_param, mean_std_dct)
 
     if out_file is not None:
-        np.save(out_file, (cld_opd_sres_out, refl_out, cld_opd_out))
+        np.save(out_file, (cld_opd_sres_out, refl_out, cld_opd_out, cld_opd_hres))
     else:
         return cld_opd_sres_out, bt, refl