如果即刻地執行,則返回 True,即使在圖形函數中也是如此。
用法
tf.compat.v1.executing_eagerly_outside_functions()
返回
- 布爾值,最外層上下文是否處於即刻模式。
此函數將檢查程序的最外層上下文並查看它是否處於即刻模式。與 tf.executing_eagerly()
相比,它很有用,後者檢查當前上下文並將在 tf.function
正文中返回 False
。它可用於構建在 Eager 運行時和 v1 會話運行時(已棄用)中表現不同的庫。
例子:
tf.compat.v1.enable_eager_execution()
@tf.function
def func():
# A function constructs TensorFlow graphs, it does not execute eagerly,
# but the outer most context is still eager.
assert not tf.executing_eagerly()
return tf.compat.v1.executing_eagerly_outside_functions()
func()
<tf.Tensor:shape=(), dtype=bool, numpy=True>
相關用法
- Python tf.compat.v1.executing_eagerly用法及代碼示例
- Python tf.compat.v1.expand_dims用法及代碼示例
- Python tf.compat.v1.estimator.DNNEstimator用法及代碼示例
- Python tf.compat.v1.estimator.experimental.KMeans用法及代碼示例
- Python tf.compat.v1.estimator.tpu.RunConfig用法及代碼示例
- Python tf.compat.v1.enable_eager_execution用法及代碼示例
- Python tf.compat.v1.estimator.regressor_parse_example_spec用法及代碼示例
- Python tf.compat.v1.estimator.BaselineRegressor用法及代碼示例
- Python tf.compat.v1.estimator.inputs.numpy_input_fn用法及代碼示例
- Python tf.compat.v1.estimator.LinearRegressor用法及代碼示例
- Python tf.compat.v1.enable_v2_tensorshape用法及代碼示例
- Python tf.compat.v1.estimator.BaselineEstimator用法及代碼示例
- Python tf.compat.v1.estimator.BaselineClassifier用法及代碼示例
- Python tf.compat.v1.estimator.LinearClassifier用法及代碼示例
- Python tf.compat.v1.estimator.DNNLinearCombinedRegressor用法及代碼示例
- Python tf.compat.v1.estimator.tpu.TPUEstimator用法及代碼示例
- Python tf.compat.v1.estimator.DNNClassifier用法及代碼示例
- Python tf.compat.v1.estimator.DNNRegressor用法及代碼示例
- Python tf.compat.v1.estimator.tpu.experimental.EmbeddingConfigSpec用法及代碼示例
- Python tf.compat.v1.estimator.DNNLinearCombinedEstimator用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.executing_eagerly_outside_functions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。