解决升级tensorflow到2.0的 报错

 

今天在升级tensorflow 后,运行相关脚本 ,有两个报错

  一个是报如下

报AttributeError: module 'tensorflow' has no attribute 'decode_raw'

网上度娘没查到, 用tf的升级工具试了下 

tf_upgrade_v2 --infile Train.py  --outfile Train-new.py

可以看到  tf.decode_raw 改为 tf.io.decode_raw    

另一个是 

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

查看tf 2下 没有   placeholder ,搜索框中先搜了下   placeholder

发现 如下内容    于是替换下即可,第一个问题其实也可以通过先在tf中搜索找到答案

tf.compat.v1.placeholder
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章