如果即刻地执行,则返回 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。