zoukankan      html  css  js  c++  java
  • Keras 载入历史模型报错: AttributeError: ‘str‘ object has no attribute ‘decode‘

    Keras 2.3.0 载入历史模型时报错:AttributeError: ‘str’ object has no attribute ‘decode’

    解决方法:

    1. 降级h5py
    pip3 install h5py==2.10.0
    1
    2. 更换模型载入方式
    上面的报错出现在调用load_weights() 载入模型参数的过程中,然而载入历史模型还可以调用keras.models.load_model函数,按照如下载入即可:

    model= keras.models.load_model(model_path,custom_objects= {'Denoising_Enhancing_layer':Denoising_Enhancing_layer},compile=False)
    1
    其中Denoising_Enhancing_layer 是自定义的Keras层,注意如果有自定义层需要为custom_objects指定类似的参数。

    天坑: 需要指出的是,load_model是个天坑。它载入模型(尤其是复杂模型,比如带残差的,带多个输入输出的模型)的时候,似乎没有真正把该载入的参数正确载入到模型里面去。于是会出现:训练阶段,测试数据集的结果很好;保存模型后,重新载入模型,再测试,可是测试结果特别差 的诡异事情!
    当出现这个天坑的时候,请重新使用load_weights 去载入历史模型!

  • 相关阅读:
    ipAllocate_and_linkState_hacking
    parseConf(配置文件解析器)
    Remember that ordinal parameters are 1-based!
    FetchType与FetchMode的区别
    Hibernate中Session.save()方法的返回值是什么
    CascadeType
    easyui隐藏列
    tree的所有节点都勾选上或者取消勾选
    jbpm角色审批
    Set与List之间转化
  • 原文地址:https://www.cnblogs.com/klausage/p/15450549.html
Copyright © 2011-2022 走看看