Created
September 3, 2020 13:00
-
-
Save ground0state/c56b20be516df1a117896daaca29609a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import random | |
import numpy as np | |
import torch | |
def set_seed(seed: int = 42): | |
random.seed(seed) | |
np.random.seed(seed) | |
os.environ["PYTHONHASHSEED"] = str(seed) | |
torch.manual_seed(seed) | |
torch.cuda.manual_seed(seed) | |
torch.backends.cudnn.deterministic = True | |
torch.backends.cudnn.benchmark = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment