|
|
@@ -64,7 +64,7 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary |
|
|
|
|
|
|
|
# Directories |
|
|
|
w = save_dir / 'weights' # weights dir |
|
|
|
w.mkdir(parents=True, exist_ok=True) # make dir |
|
|
|
(w.parent if evolve else w).mkdir(parents=True, exist_ok=True) # make dir |
|
|
|
last, best = w / 'last.pt', w / 'best.pt' |
|
|
|
|
|
|
|
# Hyperparameters |
|
|
@@ -489,7 +489,7 @@ def main(opt, callbacks=Callbacks()): |
|
|
|
assert len(opt.cfg) or len(opt.weights), 'either --cfg or --weights must be specified' |
|
|
|
if opt.evolve: |
|
|
|
opt.project = 'runs/evolve' |
|
|
|
opt.exist_ok = opt.resume |
|
|
|
opt.exist_ok, opt.resume = opt.resume, False # pass resume to exist_ok and disable resume |
|
|
|
opt.save_dir = str(increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok)) |
|
|
|
|
|
|
|
# DDP mode |