其他分享
首页 > 其他分享> > 报错AttributeError: module 'tensorflow' has no attribute 'Session'

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

作者:互联网

在新的Tensorflow 2.0版本中已经移除了Session这一模块。

tf.compat.v1.Session() 就可以获得与原先相同的输出信息。

其他类似的报错也可使用这种方法:'placeholder',tf.compat.v1.placeholder() 。

 

也可以将Tensorflow的版本降低,用pip安装 pip install tensorflow==1.14。

标签:compat,no,attribute,tf,Session,报错,pip,Tensorflow
来源: https://www.cnblogs.com/yadira/p/15949432.html