зеркало из https://github.com/microsoft/mup.git
Fixing case where None gets passed to coord check hook
This commit is contained in:
Родитель
10e8b53fb3
Коммит
d6ee3fa41f
|
@ -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():
|
||||
|
|
Загрузка…
Ссылка в новой задаче