Spaces:
Running
Running
File size: 232 Bytes
2ba4412 |
1 2 3 4 5 6 7 8 9 10 11 |
import torch
import random
import numpy as np
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 |