AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
import tensorflow as tf
改为
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
import tensorflow as tf
改为
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()