diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 21ced214245eb0feedd55b59bcc265dede5568c1..a517fe36986b3c5d318f4cfda95c07f359e4b909 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -242,7 +242,11 @@ class SRCNN: data_s = [] for k in idxs: f = files[k] - nda = np.load(f) + try: + nda = np.load(f) + except Exception: + print(f) + continue data_s.append(nda) input_data = np.concatenate(data_s)