tf.distribute.experimental_set_strategy
Установить tf.distribute.Strategy в качестве текущего без with strategy.scope().
tf.distribute.experimental_set_strategy(
strategy
)
tf.distribute.experimental_set_strategy(strategy1) f() tf.distribute.experimental_set_strategy(strategy2) g() tf.distribute.experimental_set_strategy(None) h()
равносильно:
with strategy1.scope(): f() with strategy2.scope(): g() h()
В общем случае следует использовать API with strategy.scope():, но этот вариант может быть удобным в ноутбуках, где каждый ячейку нужно поместить в блок with strategy.scope():.
Примечание: Это должно вызываться только вне любого контекста TensorFlow, чтобы избежать неправильного вложения.
| Аргументы | |
|---|---|
strategy | Объект tf.distribute.Strategy или None. |
| Возбуждаемые исключения | |
|---|---|
RuntimeError | Если вызывается внутри with strategy.scope():. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/distribute/experimental_set_strategy