AttributeError: module 'tensorflow.compat.v1' has no attribute 'Sesssion'. Did you mean: 'Session'?
时间: 2023-10-10 17:13:25 浏览: 102
python中利用xml.dom模块解析xml的方法教程
您遇到的错误是由于 TensorFlow 版本更高引起的。在 TensorFlow 2.x 中,`tf.compat.v1.Session` 被简化为 `tf.Session`。您可以尝试将代码中的 `tf.compat.v1.Session` 替换为 `tf.Session`,然后再次运行代码。这应该能够解决该问题。
阅读全文