返回句柄data 。
import tensorflow as tf
a = tf.constant(10)
b = tf.constant(20)
c = tf.multiply(a, b)
h = tf.get_session_handle(c)
sess = tf.InteractiveSession()
_h = sess.run(h)
print _h.handle
GetSessionHandle;0;/job:localhost/replica:0/task:0/device:GPU:0
dtype通过馈送张量手柄来获取类型的张量。
删除给定张量句柄的张量。
Ref:www.w3cschool.cn