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()
В общем случае следует использовать API with strategy.scope():, но этот альтернативный вариант может быть удобен в ноутбуках, где каждый ячейку необходимо поместить в 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/r2.3/api_docs/python/tf/distribute/experimental_set_strategy