首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

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

2024-12-21 来源:化拓教育网

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

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

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。


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

显示全文