Tensorflow has no attribute ‘Session‘错误原因及解决方法
·
1.错误原因
安装的是tensorflow2.X版本,而tf.Session()是tensorflow1.X中的代码。
2.解决方法
将原来代码:
import tensorflow as tf
hello = tf.constant(‘Hello, TensorFlow!’)
sess = tf.Session()
print(sess.run(hello))
修改为如下代码:
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello=tf.constant(‘Hello,Tensorflow!’)
sess=tf.compat.v1.Session()
print(sess.run(hello))
就可以得到正确的输出啦!
更多推荐
已为社区贡献1条内容
所有评论(0)