Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions run_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
import random
import shutil
from collections import OrderedDict

import numpy as np
import torch
import torch.nn as nn
from imgaug import imgaug as ia
from termcolor import colored
from torch.autograd import Variable

Expand All @@ -26,7 +24,6 @@ def check_manual_seed(seed):
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
# ia.random.seed(seed)

print('Using manual seed: {seed}'.format(seed=seed))
return
Expand Down