diff --git a/modules/deeplearning/esrgan_exp.py b/modules/deeplearning/esrgan_exp.py index 87bb16699d6e72995b3918ba224eff048787666f..7ea9397479e12e12f8c6095b6d5949cd9dcdfabf 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)