File "/usr/lib/python2.7/site-packages/tensorflow/python/client/session.py", line 282, in run

发布于 2021-12-01 18:12:32 字数 710 浏览 668 评论 2

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

虐人心 2021-12-05 03:38:59

这个应该是中文版tensorflow上的代码,根据错误提示是使用了一个已关闭的session。也就是说result = sess.run([mul, intermed]),这句话中的“sess”是教程中上一段中的“sess”,本段代码中并没有定义sess,所以倒数第三行需要改为 with tf.Session() as sess:

初见你 2021-12-04 14:26:08

RuntimeError: Attempted to use a closed Session.

但是代码没什么问题啊

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文