ColorMNet / dataset /reseed.py
root
add test code
d01f62c
import torch
import random
def reseed(seed):
random.seed(seed)
torch.manual_seed(seed)