From b50bc48cca86a998d8493d644cb9d7b80d68b6bb Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Wed, 17 Aug 2022 12:25:54 -0500
Subject: [PATCH] fix a maybe bug

---
 modules/deeplearning/espcn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py
index 54e15bf5..d27784de 100644
--- a/modules/deeplearning/espcn.py
+++ b/modules/deeplearning/espcn.py
@@ -689,7 +689,7 @@ class ESPCN:
 
         ckpt.restore(ckpt_manager.latest_checkpoint)
 
-        data = normalize(nda_lr, data_param, mean_std_dct)
+        data = normalize(nda_lr, param, mean_std_dct)
         data = np.expand_dims(data, axis=0)
         data = np.expand_dims(data, axis=3)
 
-- 
GitLab