本文介绍了AttributeError: 模块“tensorflow"没有属性“InteractiveSession"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在 Ubuntu 16.10 环境中从 Source 安装了 tensorflow.一切顺利,但现在在编译程序时,它显示以下错误:

I have installed tensorflow from Source on Ubuntu 16.10 environment. Everything went smooth but now on compiling a program, it shows the following error:

Traceback (most recent call last):
  File "ff.py", line 3, in <module>
    sess = tf.InteractiveSession()
AttributeError: module 'tensorflow' has no attribute 'InteractiveSession'

没有找到任何与此相关的帖子.有人可以帮忙吗?

Didn't find any post related to this. Could someone please help?

推荐答案

sess=tf.compat.v1.InteractiveSession()

如果您使用的是 tesorflow 2.0.0 版本,请使用上面的行而不是 sess = tf.InteractiveSession()

Use above line instead of sess = tf.InteractiveSession() line, if you are using tesorflow 2.0.0 version

这篇关于AttributeError: 模块“tensorflow"没有属性“InteractiveSession"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 10:32