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

这是由于版本不兼容的问题,在tf2的条件下,调用了tf1的API接口。

使用如下代码:

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

替换如下代码:

import tensorflow as tf

完美解决!

你可能感兴趣的:(日常Python,python)