Skip to content

Commit

Permalink
update log_dir to runs/exp #107
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Jul 9, 2020
1 parent 72d5b58 commit 603ea0b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def train(hyp):
# Train
if not opt.evolve:
print('Start Tensorboard with "tensorboard --logdir=runs", view at http://localhost:6006/')
tb_writer = SummaryWriter(comment=opt.name)
tb_writer = SummaryWriter(log_dir=increment_dir('runs/exp', opt.name))
if opt.hyp: # update hyps
with open(opt.hyp) as f:
hyp.update(yaml.load(f, Loader=yaml.FullLoader))
Expand Down
10 changes: 10 additions & 0 deletions utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,16 @@ def output_to_target(output, width, height):
return np.array(targets)


def increment_dir(dir, comment=''):
# Increments a directory runs/exp1 --> runs/exp2_comment
n = 0 # number
d = sorted(glob.glob(dir + '*')) # directories
if len(d):
d = d[-1].replace(dir, '')
n = int(d[:d.find('_')]) + 1 # increment
return dir + str(n) + ('_' + comment if comment else '')


# Plotting functions ---------------------------------------------------------------------------------------------------
def butter_lowpass_filtfilt(data, cutoff=1500, fs=50000, order=5):
# https://stackoverflow.com/questions/28536191/how-to-filter-smooth-with-scipy-numpy
Expand Down

0 comments on commit 603ea0b

Please sign in to comment.