Browse Source

update log_dir to runs/exp #107

5.0
Glenn Jocher 4 years ago
parent
commit
2110f5ee89
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/utils.py

+ 1
- 1
utils/utils.py View File

@@ -910,7 +910,7 @@ def increment_dir(dir, comment=''):
d = sorted(glob.glob(dir + '*')) # directories
if len(d):
d = d[-1].replace(dir, '')
n = int(d[:d.find('_')]) + 1 # increment
n = int(d[:d.find('_')] if '_' in d else d) + 1 # increment
return dir + str(n) + ('_' + comment if comment else '')



Loading…
Cancel
Save