diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py
index d9df97b25f9d2df21bd3eae10e2469f18a8cb5b1..ad84b9d3c7372450f1db259186fc4637ebb1472a 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)