Browse Source

Evolution `--resume` fix (#4802)

Also disable `/weights` dir creation when evolving as no weights are saved and empty folder causes user expectations of weights.
modifyDataloader
Glenn Jocher GitHub 3 years ago
parent
commit
621b6d5ba8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      train.py

+ 2
- 2
train.py View File

@@ -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…
Cancel
Save