您当前的位置: 首页 >  tensorflow
  • 0浏览

    0关注

    2393博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

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

一个处女座的程序猿 发布时间:2020-05-27 08:02:33 ,浏览量: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) 

哈哈,大功告成!

 

 

 

关注
打赏
1664196048
查看更多评论
立即登录/注册

微信扫码登录

0.2051s