Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 237 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 237 Bytes

pytorch

设置随机种子

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