소스 검색

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

Automatically names run as --cfg argument
modifyDataloader
Glenn Jocher GitHub 2 년 전
부모
커밋
df9008ee69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      train.py

+ 2
- 0
train.py 파일 보기

@@ -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…
취소
저장