AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
import tensorflow as tf
改为
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
python入坑笔记2
最新推荐文章于 2023-10-08 12:30:21 发布
AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
import tensorflow as tf
改为
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()