torch.manual_seed(int seed):为CPU设置种子用于生成相同随机数,根据参数seed值来判断哪些随机数相同。
torch.manual_seed(2)
print(torch.rand(2))
torch.manual_seed(1)
print(torch.rand(2)
torch.manual_seed(int seed):为CPU设置种子用于生成相同随机数,根据参数seed值来判断哪些随机数相同。
torch.manual_seed(2)
print(torch.rand(2))
torch.manual_seed(1)
print(torch.rand(2)