其他分享
首页 > 其他分享> > TensorFlow创建Session时报AttributeError

TensorFlow创建Session时报AttributeError

作者:互联网

报错内容:

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

解决办法:

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

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

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

标签:降级,attribute,Session,报错,tf,TensorFlow,AttributeError
来源: https://www.cnblogs.com/OFSHK/p/14805515.html