Spaces:
Running on Zero
Running on Zero
| import random | |
| import torch | |
| def fix_seed(seed: int): | |
| random.seed(seed) | |
| torch.manual_seed(seed) | |
| torch.cuda.manual_seed(seed) | |
| torch.cuda.manual_seed_all(seed) |
| import random | |
| import torch | |
| def fix_seed(seed: int): | |
| random.seed(seed) | |
| torch.manual_seed(seed) | |
| torch.cuda.manual_seed(seed) | |
| torch.cuda.manual_seed_all(seed) |