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


Python PyTorch Generator.set_state用法及代码示例


本文简要介绍python语言中 torch.Generator.set_state 的用法。

用法:

set_state(new_state) → void

参数

new_state(torch.ByteTensor) -想要的状态。

设置生成器状态。

例子:

>>> g_cpu = torch.Generator()
>>> g_cpu_other = torch.Generator()
>>> g_cpu.set_state(g_cpu_other.get_state())

相关用法


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