Fixing case where None gets passed to coord check hook

This commit is contained in:
TevenLeScao 2023-01-04 16:22:49 +01:00
Родитель 10e8b53fb3
Коммит d6ee3fa41f
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -142,6 +142,8 @@ def _record_coords(records, width, modulename, t,
for fname, f in fdict.items():
_d[fname] = f(x).item()
records.append(_d)
elif x is None:
pass
else:
raise NotImplementedError(f'Unexpected output type: {type(x)}')
with torch.no_grad():