module 'tensorflow' has no attribute 'placeholder'解决方法
时间: 2023-09-19 16:04:57 浏览: 85
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
在 TensorFlow 2.x 版本中,`placeholder` 已经被移除了,如果想要使用占位符,可以使用 `tf.compat.v1.placeholder`。
如果你在 TensorFlow 1.x 版本中使用 `placeholder` 报错了,可能是因为你没有导入正确的模块,可以尝试以下方法:
```python
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
然后使用 `tf.placeholder` 就能够正常运行了。
阅读全文