xs = tf.compat.v1.placeholder(tf.float32, [None, 1]) AttributeError: module 'tensorflow' has no attribute 'compat'
时间: 2023-06-14 10:08:35 浏览: 80
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误可能是由于使用较新版本的 TensorFlow 库导致的。在 TensorFlow 2.0 中,`tf.compat.v1` 已经被弃用了。你可以尝试将代码中的 `tf.compat.v1.placeholder` 改成 `tf.placeholder`。这应该可以解决这个问题。或者,如果你想继续使用 `tf.compat.v1`,可以尝试降低 TensorFlow 库的版本到 1.x 版本。
阅读全文