tf.distribute.experimental_set_strategy
| View source on GitHub |
Установить 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()
В общем случае следует использовать with strategy.scope(): API, но этот альтернативный вариант может быть удобен в ноутбуках, где каждый ячейку нужно поместить в with strategy.scope(): блок.
Примечание: Это следует вызывать только за пределами любого TensorFlow-области, чтобы избежать неправильного вложения.
| Аргументы | |
|---|---|
strategy | Объект tf.distribute.Strategy или None. |
| Исключения | |
|---|---|
RuntimeError | Если вызвано внутри with strategy.scope():. |
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/python/tf/distribute/experimental_set_strategy