xs = tf.placeholder(tf.float32, [None, 1]) AttributeError: module 'tensorflow' has no attribute 'placeholder'
时间: 2023-06-17 13:01:59 浏览: 61
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是由于您的TensorFlow版本不同导致的。在TensorFlow 2.0及以上版本中,`placeholder`被`tf.compat.v1.placeholder`替换。如果您使用的是TensorFlow 2.0或更高版本,您可以尝试将代码中的`tf.placeholder`替换为`tf.compat.v1.placeholder`。如果您使用的是TensorFlow 1.x版本,那么您可以检查一下是否正确导入了TensorFlow库,或者尝试重新安装TensorFlow。
阅读全文