Traceback (most recent call last): File "D:/SteganoGAN-master/research/psnr.py", line 26, in <module> _main() File "D:/SteganoGAN-master/research/psnr.py", line 19, in _main with tf.Session() as sess: AttributeError: module 'tensorflow' has no attribute 'Session'
时间: 2023-07-16 09:12:20 浏览: 189
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误通常是因为 TensorFlow 版本不兼容导致的。在较新的 TensorFlow 版本中,`Session` 已经被移除了。如果你使用的是 TensorFlow 2.0 或更新版本,你需要使用 `tf.compat.v1.Session()` 来代替 `tf.Session()`。如果你使用的是 TensorFlow 1.x 版本,那么这个错误可能是因为你的 TensorFlow 安装没有正确完成,你可以尝试重新安装 TensorFlow,或者检查你的环境变量是否正确设置。
阅读全文