Spaces:
Configuration error
Configuration error
| # Copyright (c) Alibaba, Inc. and its affiliates. | |
| import random | |
| import numpy as np | |
| import torch | |
| 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 | |