tensorflow 报错 AttributeError: module 'tensorflow' has no attribute 'placeholder'
时间: 2023-11-02 19:06:08 浏览: 157
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为 TensorFlow 2.x 版本中已经移除了 `tf.placeholder`,而改用了 `tf.compat.v1.placeholder`。如果你使用的是 TensorFlow 1.x 版本,那么可以直接使用 `tf.placeholder`。如果你使用的是 TensorFlow 2.x 版本,那么可以使用 `tf.compat.v1.placeholder` 或者使用 `tf.keras.Input`。
阅读全文