diff --git a/modules/deeplearning/espcn.py b/modules/deeplearning/espcn.py index 0a1d106526835a99473c60f48f4909c77be66c64..86b39e4c235bdb57c4426e8b345c7fc99eeb0c75 100644 --- a/modules/deeplearning/espcn.py +++ b/modules/deeplearning/espcn.py @@ -672,8 +672,10 @@ 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)