Sfoglia il codice sorgente

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

Automatically names run as --cfg argument
modifyDataloader
Glenn Jocher GitHub 2 anni fa
parent
commit
df9008ee69
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      train.py

+ 2
- 0
train.py Vedi 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…
Annulla
Salva