tf.get_session_handle(data, name=None)
See the guide: Tensor Handle Operations > Tensor Handle Operations
Return the handle of data
.
This is EXPERIMENTAL and subject to change.
Keep data
"in-place" in the runtime and create a handle that can be used to retrieve data
in a subsequent run().
Combined with get_session_tensor
, we can keep a tensor produced in one run call in place, and use it as the input in a future run call.
data
: A tensor to be stored in the session.name
: Optional name prefix for the return tensor.A scalar string tensor representing a unique handle for data
.
TypeError
: if data
is not a Tensor.Example:
c = tf.multiply(a, b) h = tf.get_session_handle(c) h = sess.run(h) p, a = tf.get_session_tensor(h.handle, tf.float32) b = tf.multiply(a, 10) c = sess.run(b, feed_dict={p: h.handle})
Defined in tensorflow/python/ops/session_ops.py
.
© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/get_session_handle