AttributeError: module 'tensorflow.compat' has no attribute 'v1session'.
时间: 2023-10-15 07:04:56 浏览: 53
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为 TensorFlow 版本更新导致的,v1.session 已经不再被支持。你可以在代码中将 'tensorflow.compat.v1.Session()' 替换为 'tensorflow.Session()'。如果你的代码中使用了其他 v1 版本的 API,也需要进行相应的修改。
阅读全文