当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.distribute.StrategyExtended.non_slot_devices用法及代码示例


用法

non_slot_devices(
    var_list
)

参数

返回

  • 用于非槽变量的一系列设备。

用于非槽变量的设备。

已弃用:仅限 TF 1.x。

此方法返回放置非插槽变量的非插槽设备。用户可以使用块在这些设备上创建非插槽变量:

with tf.distribute.StrategyExtended.colocate_vars_with(tf.distribute.StrategyExtended.non_slot_devices(...)):
  ...

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.distribute.StrategyExtended.non_slot_devices。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。