RuntimeError: Attempted to use a closed Session.

文章展示了在TensorFlow中使用tf.compat.v1.Session时遇到的代码对齐错误,并提供了简单的解决方案,即正确缩进后续代码,确保代码块的结构正确。通过这样做,可以成功创建文件writer并运行计算得到c_sum。
摘要由CSDN通过智能技术生成


原代码:

with tf.compat.v1.Session() as sess:
    print(sess.graph)
filewriter = tf.compat.v1.summary.FileWriter("./tmp/summary/", graph=sess.graph)

c_sum = sess.run(c)
print(c_sum)

原因是with tf.compat.v1.Session() as sess:这行代码不能与下面的代码对齐


 

解决方案:

with tf.compat.v1.Session() as sess:
    print(sess.graph)
    filewriter = tf.compat.v1.summary.FileWriter("./tmp/summary/", graph=sess.graph)
    
    c_sum = sess.run(c)
    print(c_sum)

将with tf.compat.v1.Session() as sess: 后面的代码全部缩进一下就可以了

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值