TensorFlow版本更新后运行代码所遇到的error(持续更新)

未经允许,不得擅自改动和转载

本博客会持续更新,如果遇到新的问题,欢迎大家提问,大家一起进步!

AttributeError: module ‘tensorflow’ has no attribute ‘mul’

《TensorFlow版本更新后运行代码所遇到的error(持续更新)》 image.png

  • 原因:TensorFlow 发布的新版本的 API 修改了
    tf.mul, tf.sub and tf.neg are deprecated in favor of tf.multiply, tf.subtract and tf.negative.
  • 解决方法:使用时将 tf.mul 改成 tf.multiply 即可
    其余的 tf.sub 和 tf.neg 也要相应修改为 tf.subtract 和 tf.negative。

相關學習:
Tensorflow 1.3版本更新概览
windows tensorflow 版本与升级

好看的人儿,点个喜欢❤ 你会更好看哦~~

    原文作者:阿小庆
    原文地址: https://www.jianshu.com/p/4a2f96e1e844
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞