当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.executing_eagerly_outside_functions用法及代码示例


如果即刻地执行,则返回 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>

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.executing_eagerly_outside_functions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。