module 'tensorflow' has no attribute 'session'
时间: 2023-04-14 08:04:54 浏览: 95
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这句话的意思是: tensorflow 模块中没有 session 属性。
可能是因为你使用了过老的版本的 tensorflow 库,而在这个版本中, session 不是模块级别的属性,而是在 tf.compat.v1.Session 或tf.compat.v1.InteractiveSession 中,你可以通过改变你的代码或更新tensorflow来解决这个问题。
阅读全文