tf.distribute.has_strategy

TensorFlow 2 version View source on GitHub

Return if there is a current non-default tf.distribute.Strategy.

assert not tf.distribute.has_strategy()
with strategy.scope():
  assert tf.distribute.has_strategy()

True if inside a with strategy.scope():.