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


Python tf.compat.v1.distribute.StrategyExtended.variable_created_in_scope用法及代碼示例


用法

variable_created_in_scope(
    v
)

參數

返回

  • 如果在範圍內創建了 v,則為 True,否則為 False。

測試在此策略範圍處於活動狀態時是否創建了 v

在策略範圍內創建的變量是它的"owned":

strategy = tf.distribute.MirroredStrategy()
with strategy.scope():
  v = tf.Variable(1.)
strategy.extended.variable_created_in_scope(v)
True

在策略之外創建的變量不屬於它:

strategy = tf.distribute.MirroredStrategy()
v = tf.Variable(1.)
strategy.extended.variable_created_in_scope(v)
False

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.distribute.StrategyExtended.variable_created_in_scope。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。