File "/usr/lib/python2.7/site-packages/tensorflow/python/client/session.py", line 282, in run
input1 = tf.constant(3.0)
>>> input2 = tf.constant(2.0)
>>> input3 = tf.constant(5.0)
>>> intermed = tf.add(input2, input3)
>>> mul = tf.mul(input1, intermed)
>>>
>>> with tf.Session():
... result = sess.run([mul, intermed])
... print result
...
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "/usr/lib/python2.7/site-packages/tensorflow/python/client/session.py", line 282, in run
raise RuntimeError('Attempted to use a closed Session.')
RuntimeError: Attempted to use a closed Session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个应该是中文版tensorflow上的代码,根据错误提示是使用了一个已关闭的session。也就是说result = sess.run([mul, intermed]),这句话中的“sess”是教程中上一段中的“sess”,本段代码中并没有定义sess,所以倒数第三行需要改为 with tf.Session() as sess:
RuntimeError: Attempted to use a closed Session.
但是代码没什么问题啊