pytorch 随机数种子

为了方便复现和debug,固定随机种子非常重要,这里记录 PyTorch 中固定各种随机种子的方法。

def seed_everything(seed):
    random.seed(seed)
    np.random.seed(seed)
    torch.manual_seed(seed)
    if torch.cuda.is_available():
        torch.cuda.manual_seed(seed)
        torch.cuda.manual_seed_all(seed)
    torch.backends.cudnn.deterministic = True

你可能感兴趣的:(Pytorch基础,pytorch,深度学习)