From 0b2bce0189b095ee9919fc4aaadc8616c3fc10f4 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Thu, 1 Sep 2022 10:26:29 -0500
Subject: [PATCH] minor

---
 modules/deeplearning/espcn.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py
index d9df97b2..ad84b9d3 100644
--- a/modules/deeplearning/espcn.py
+++ b/modules/deeplearning/espcn.py
@@ -673,10 +673,8 @@ def prepare(param_idx=1, filename='/Users/tomrink/data_valid_40.npy'):
 
 def run_evaluate_static(in_file, out_file, param='temp_11_0um_nom', ckpt_dir='/Users/tomrink/tf_model_sres/run-20220805173619/'):
     nda = np.load(in_file)
-    print(nda.shape)
     nda = nda[:, data_idx, 2:133:2, 2:133:2]
     nda = np.expand_dims(nda, axis=3)
-    print(nda.shape)
 
     nn = ESPCN()
     out_sr = nn.run_evaluate(nda, param, ckpt_dir)
-- 
GitLab