python 深度学习 记录遇到的报错问题12

本篇继python 深度学习 记录遇到的报错问题11_undefined symbol: __nvjitlinkadddata_12_1, version-优快云博客

目录

一、AttributeError: module ‘tensorflow‘ has no attribute ‘app‘

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

三、AttributeError: module 'tensorflow' has no attribute 'variable_scope'

四、AttributeError: module 'tensorflow' has no attribute 'AUTO_REUSE'


一、AttributeError: module ‘tensorflow‘ has no attribute ‘app‘

报错:AttributeError: module ‘tensorflow‘ has no attribute ‘app‘

原因:在我的code中是由该命令FLAGS = tf.flags.FLAGS引起的报错,主要原因是我下载的tensorflow是最新的版本2.1,因版本问题引起的错误。

解决方法:由于tensorflow版本的原因,我的tensorflow的版本是2.10.0的,而源代码是tensorflow1.几版本的,所以只需要将源文件里面的import tensorflow as tf改为 import tensorflow.compat.v1 as tf

# import tensorflow as tf
import tensorflow.compat.v1 as tf

FLAGS = tf.app.flags.FLAGS

改了之后,

代码下方会出现黄色波浪线,但是没有报错了,代码可以正常运行。

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

原因ÿ

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

水w

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值