检查当前线程是否启用了即刻执行。
用法
tf.compat.v1.executing_eagerly()
返回
-
True
如果当前线程启用了即刻执行。
即刻执行通常通过 tf.compat.v1.enable_eager_execution
启用,但也可以在 Python 函数的上下文中通过 tf.contrib.eager.py_func 启用。
启用即刻执行时,在大多数情况下返回 True
。但是,在以下用例中,此 API 可能会返回 False
。
- 在
tf.function
内部执行,除非之前调用了tf.init_scope
或tf.config.run_functions_eagerly(True)
。 - 在
tf.dataset
的转换函数中执行。 tf.compat.v1.disable_eager_execution()
被调用。
tf.compat.v1.enable_eager_execution()
一般情况:
print(tf.executing_eagerly())
True
tf.function
内部:
@tf.function
def fn():
with tf.init_scope():
print(tf.executing_eagerly())
print(tf.executing_eagerly())
fn()
True
False
在 tf.config.run_functions_eagerly(True)
之后的 tf.function
内部被调用:
tf.config.run_functions_eagerly(True)
@tf.function
def fn():
with tf.init_scope():
print(tf.executing_eagerly())
print(tf.executing_eagerly())
fn()
True
True
tf.config.run_functions_eagerly(False)
在 tf.dataset
的转换函数内部:
def data_fn(x):
print(tf.executing_eagerly())
return x
dataset = tf.data.Dataset.range(100)
dataset = dataset.map(data_fn)
False
相关用法
- Python tf.compat.v1.executing_eagerly_outside_functions用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。