You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running VGG model provided in the repo, I get a TypeError: Unknown type <dtype: 'float16'>. For now, TensorFI supports four types - int and floats of 32 and 64, it might be good to add the support for float16.
Also, there might be a bug at line 284 in injectFault.py
else:
raise TypeError("Unknown type" + type)
as it'll raise TypeError: cannot concatenate 'str' and 'DType' objects
Maybe it should be written as
else:
raise TypeError("Unknown type" + str(type))
Thanks
The text was updated successfully, but these errors were encountered:
When running VGG model provided in the repo, I get a
TypeError: Unknown type <dtype: 'float16'>
. For now, TensorFI supports four types - int and floats of 32 and 64, it might be good to add the support for float16.Also, there might be a bug at line 284 in injectFault.py
as it'll raise
TypeError: cannot concatenate 'str' and 'DType' objects
Maybe it should be written as
Thanks
The text was updated successfully, but these errors were encountered: