TensorFlow创建Session时报AttributeError

报错内容:

AttributeError: module 'tensorflow' has no attribute 'Session'

TensorFlow创建Session时报AttributeError

解决办法:

  1. tf.Session() 改成 tf.compat.v1.Session() 即可解决。

  2. 版本降级(我这试了不行,降级后还是报错,甚至出现了其他错误)

参考:https://www.jianshu.com/p/f0e8dd1f622e

上一篇:Opencv处理AttributeError: ‘NoneType‘ object has no attribute ‘copy‘


下一篇:pycharm pip 安装包时AttributeError: module 'six' has no attribute 'main' 问题