当前位置: 首页 > 工具软件 > manual > 使用案例 >

torch.manual_seed()和torch.cuda.manual_seed()

秦禄
2023-12-01
torch.manual_seed(args.seed) #为CPU设置种子用于生成随机数,以使得结果是确定的
if args.cuda:
    torch.cuda.manual_seed(args.seed)  # 为当前GPU设置随机种子;            
    torch.cuda.manual_seed_all()  # 使用多个GPU为所有的GPU设置种子。

 

 类似资料: