From e797e07d7a2b087ba204545129fd708c56f24189 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 2 Oct 2023 17:53:32 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/esrgan_exp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deeplearning/esrgan_exp.py b/modules/deeplearning/esrgan_exp.py index 87bb1669..7ea93974 100644 --- a/modules/deeplearning/esrgan_exp.py +++ b/modules/deeplearning/esrgan_exp.py @@ -124,7 +124,7 @@ def run(in_file, out_file): sres_image = tf.squeeze(sres_image) if out_file is not None: - np.save(out_file, sres_image) + # np.save(out_file, sres_image) with open(out_file, 'wb') as f: np.save(f, sres_image) np.save(f, hr_image) -- GitLab