Caden Shokat
add traing + utils
5dfc78f
raw
history blame contribute delete
289 Bytes
import os, random, numpy as np
def set_seed(seed: int = 42):
random.seed(seed)
np.random.seed(seed)
try:
import torch
torch.manual_seed(seed)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(seed)
except Exception:
pass