Evolution `--resume` fix (#4802)
Also disable `/weights` dir creation when evolving as no weights are saved and empty folder causes user expectations of weights.pull/4803/head
parent
b74dd4ba4f
commit
621b6d5ba8
4
train.py
4
train.py
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue