在Tensorflow中有没有办法找到给定的tf.Session()
是否仍然打开?到目前为止,我找到的唯一方法是尝试使用它,并在未打开时捕获异常.
检查session._closed是否为True
sess = tf.Session() init_op = tf.global_variables_initializer() sess.run(init_op) print(sess._closed) sess.close() print(sess._closed)
产量
False True