美文网首页各种代码错误
AttributeError: module 'tensorfl

AttributeError: module 'tensorfl

作者: 一只大南瓜 | 来源:发表于2019-08-14 10:19 被阅读0次

    TF版本升级问题:成功解决AttributeError: module 'tensorflow' has no attribute 'mul'

    解决问题

    AttributeError: module 'tensorflow' has no attribute 'mul'

    解决思路

    tf.mul已经在新版本中被移除,使用 tf.multiply 代替

    解决方法

    将tf.mul(input1, input2) 改为 tf.multiply(input1, input2)

    成功!

    原文链接:https://blog.csdn.net/NCTU_to_prove_safety/article/details/88954532

    相关文章

      网友评论

        本文标题:AttributeError: module 'tensorfl

        本文链接:https://www.haomeiwen.com/subject/cfgwjctx.html