Abyssirange / Random seed hopefully
Smithjohny376's picture
Create Random seed hopefully
da6a9a9
raw
history blame contribute delete
No virus
287 Bytes
"""
random.seed(seed)
np.random.seed(seed)
if is_torch_available():
torch.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
# ^^ safe to call this function even if cuda is not available
if is_tf_available():
tf.random.set_seed(seed)