Browse Source

Add train.py `--name cfg` option (#7202)

Automatically names run as --cfg argument
modifyDataloader
Glenn Jocher GitHub 2 years ago
parent
commit
df9008ee69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      train.py

+ 2
- 0
train.py View File

@@ -519,6 +519,8 @@ def main(opt, callbacks=Callbacks()):
if opt.project == str(ROOT / 'runs/train'): # if default project name, rename to runs/evolve
opt.project = str(ROOT / 'runs/evolve')
opt.exist_ok, opt.resume = opt.resume, False # pass resume to exist_ok and disable resume
if opt.name == 'cfg':
opt.name = Path(opt.cfg).stem # use model.yaml as name
opt.save_dir = str(increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok))

# DDP mode

Loading…
Cancel
Save