Skip to content
Snippets Groups Projects
Commit 39189876 authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 5cd895df
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment