當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。