#Keras#错误之AttributeError: ‘str‘ object has no attribute ‘decode‘

1. 问题说明 


keras保存的h5、hdf5模型,在使用load_model和load_weights函数,出现AttributeError: ‘str’ object has no attribute 'decode’问题,之前也使用过这些模型和加载函数,但并没有出现这个错误,找了好久才找到解决方案。

2. 解决办法

貌似是由于h5py模块的版本问题,改用2.10版本

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

3. h5,hdf5模型格式说明

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

model.load_weights	# 加载hdf5的可以
model = load_model	# 可以加载h5,也可以hdf5

 

原文:https://blog.csdn.net/weixin_45371989/article/details/109789132 

你可能感兴趣的:(Keras,Error汇总,tensorflow,神经网络)