jupyter botebook module 'tensorflow' has no attribute 'placeholder'
时间: 2024-04-10 10:24:44 浏览: 161
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
在Jupyter Notebook中遇到"module 'tensorflow' has no attribute 'placeholder'"的错误通常是因为TensorFlow版本的问题。在TensorFlow 2.0及更高版本中,placeholder已被弃用,取而代之的是tf.keras.Input。因此,如果你使用的是TensorFlow 2.0及更高版本,你需要将placeholder替换为tf.keras.Input。
如果你使用的是TensorFlow 1.x版本,那么placeholder是可用的。请确保你已正确安装了TensorFlow,并且版本与你的代码兼容。
阅读全文