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
/python3.6/site-packages/keras/engine/saving.py", line 1009 [1004], in load_weights_from_hdf5_group
original_backend = f.attrs['backend'].decode('utf8')
AttributeError: 'str' object has no attribute 'decode'
After removing .decode('utf8') in this lines everything works fine.
Version of Keras - 2.2.4
May be it's necessary to use some other version?
The text was updated successfully, but these errors were encountered:
I've got an error:
/python3.6/site-packages/keras/engine/saving.py", line 1009 [1004], in load_weights_from_hdf5_group
original_backend = f.attrs['backend'].decode('utf8')
AttributeError: 'str' object has no attribute 'decode'
After removing .decode('utf8') in this lines everything works fine.
Version of Keras - 2.2.4
May be it's necessary to use some other version?
The text was updated successfully, but these errors were encountered: