其他分享
首页 > 其他分享> > 2022.4.15

2022.4.15

作者:互联网

使用tensorflow出现的错误:

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

解决方法:

将代码:

import tensorflow as tf

替换为

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

替换后我的pycharm里compat下面会显示红波浪线,但是仍然可以运行

 

标签:compat,15,attribute,module,import,tensorflow,2022.4,替换
来源: https://www.cnblogs.com/SirNie/p/16149354.html