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

如果装的是tf2的话,可能是tf2的问题?
把:

import tensorflow as tf

改成:

import tensorflow.compat.v1 as tf

有需要的话还可以补个:

tf.disable_v2_behavior()

你可能感兴趣的:(debug)