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

报错如下:

报错:AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘_第1张图片

 解决方法:

原因:在tensorflow2版本下代替使用tensorflow1。

先查看tensorflow版本信息:

pip list

报错:AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘_第2张图片

 然后再代码开头加上下述代码:

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

你可能感兴趣的:(python,pycharm,tensorflow)