keras保存的h5、hdf5模型,加载时出现“AttributeError: ‘str‘ object has no attribute ‘decode‘

keras保存的h5、hdf5模型,加载时出现“AttributeError: ‘str‘ object has no attribute ‘decode‘

  • 问题
  • 解决方法
  • 说明(h5,hdf5)

问题

keras保存的h5、hdf5模型,在使用load_model和load_weights函数,出现AttributeError: ‘str’ object has no attribute 'decode’问题.

解决方法

h5py模块的版本问题,改用2.10版本(用清华源下载)

pip install h5py==2.10 -i https://pypi.doubanio.com/simple

说明(h5,hdf5)

h5,hdf5模型格式说明:
1.HDF5格式文件保存的只是权值文件,需要先构建模型;
2.H5 格式文件保存的是模型的权值和模型的结构,可以直接读取。

你可能感兴趣的:(目标检测,python,tensorflow)