用法
eval(
session=None
)
參數
-
session
用於評估此變量的會話。如果沒有,則使用默認會話。
返回
-
帶有此變量值副本的 numpy
ndarray
。
在會話中,計算並返回此變量的值。
這不是圖構造方法,它不會向圖中添加操作。
這種便捷方法需要一個會話,其中包含此變量的圖形已啟動。如果沒有傳遞會話,則使用默認會話。有關啟動圖表和會話的更多信息,請參閱tf.compat.v1.Session
。
v = tf.Variable([1, 2])
init = tf.compat.v1.global_variables_initializer()
with tf.compat.v1.Session() as sess:
sess.run(init)
# Usage passing the session explicitly.
print(v.eval(sess))
# Usage with the default session. The 'with' block
# above makes 'sess' the default session.
print(v.eval())
相關用法
- Python tf.Variable.__lt__用法及代碼示例
- Python tf.Variable.__pow__用法及代碼示例
- Python tf.Variable.__le__用法及代碼示例
- Python tf.Variable.initialized_value用法及代碼示例
- Python tf.Variable.__matmul__用法及代碼示例
- Python tf.Variable.ref用法及代碼示例
- Python tf.Variable.__getitem__用法及代碼示例
- Python tf.Variable.load用法及代碼示例
- Python tf.Variable.__gt__用法及代碼示例
- Python tf.Variable.__rpow__用法及代碼示例
- Python tf.Variable.__abs__用法及代碼示例
- Python tf.Variable.scatter_nd_add用法及代碼示例
- Python tf.Variable.scatter_nd_sub用法及代碼示例
- Python tf.Variable.__sub__用法及代碼示例
- Python tf.Variable.__rmatmul__用法及代碼示例
- Python tf.Variable.__rsub__用法及代碼示例
- Python tf.Variable.scatter_nd_update用法及代碼示例
- Python tf.Variable.__ge__用法及代碼示例
- Python tf.Variable用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.Variable.eval。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。