返回 data
的句柄。
用法
tf.compat.v1.get_session_handle(
data, name=None
)
參數
-
data
要存儲在會話中的張量。 -
name
返回張量的可選名稱前綴。
返回
-
一個標量字符串張量,表示
data
的唯一句柄。
拋出
-
TypeError
如果data
不是張量。
這是實驗性的,可能會發生變化。
將 data
"in-place" 保留在運行時中,並創建可用於在後續 run() 中檢索 data
的句柄。
結合 get_session_tensor
,我們可以保留在一次運行調用中產生的張量,並將其用作未來運行調用的輸入。
例子:
c = tf.multiply(a, b)
h = tf.compat.v1.get_session_handle(c)
h = sess.run(h)
p, a = tf.compat.v1.get_session_tensor(h.handle, tf.float32)
b = tf.multiply(a, 10)
c = sess.run(b, feed_dict={p:h.handle})
相關用法
- Python tf.compat.v1.get_session_tensor用法及代碼示例
- Python tf.compat.v1.get_variable_scope用法及代碼示例
- Python tf.compat.v1.get_local_variable用法及代碼示例
- Python tf.compat.v1.get_variable用法及代碼示例
- Python tf.compat.v1.gfile.Copy用法及代碼示例
- Python tf.compat.v1.gather用法及代碼示例
- Python tf.compat.v1.gfile.Exists用法及代碼示例
- Python tf.compat.v1.gradients用法及代碼示例
- Python tf.compat.v1.gfile.FastGFile.close用法及代碼示例
- Python tf.compat.v1.gather_nd用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- Python tf.compat.v1.strings.length用法及代碼示例
- Python tf.compat.v1.data.Dataset.snapshot用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.get_session_handle。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。