当前位置:   article > 正文

Python Keras AttributeError: ‘str‘ object has no attribute ‘decode‘_str' object has no attribute 'decode' load model

str' object has no attribute 'decode' load model

今天写一个识别手写体的程序,程序的开头

  1. from tensorflow.keras.models import load_model
  2. import cv2
  3. import easygui
  4. model=load_model("minst_model.h5")
  5. model.summary()

然后就。。。报错了

AttributeError: 'str' object has no attribute 'decode'

model=load_model("minst_model.h5")这一行报错了

原因是h5py模块版本太新了,在pycharm的settings中安装:

安装个2.x的版本(老版本)即可

没有pycharm的可以在cmd里卸载后再安装

pip uninstall h5py
pip install h5py==2.3.0

就可以成功读取h5模型了!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/572839
推荐阅读
相关标签
  

闽ICP备14008679号