mirror of
https://github.com/ultralytics/yolov5.git
synced 2025-06-03 14:49:29 +08:00
Train.py line 486 typo fix (#9330)
fixed issue Signed-off-by: robinned <78896580+robinned@users.noreply.github.com> Signed-off-by: robinned <78896580+robinned@users.noreply.github.com> Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com>
This commit is contained in:
parent
5f075eedf2
commit
3cd66b1c38
2
train.py
2
train.py
@ -483,7 +483,7 @@ def main(opt, callbacks=Callbacks()):
|
||||
check_requirements()
|
||||
|
||||
# Resume (from specified or most recent last.pt)
|
||||
if opt.resume and not check_wandb_resume(opt) and not check_comet_resume(opt) or opt.evolve:
|
||||
if opt.resume and not check_wandb_resume(opt) and not check_comet_resume(opt) and not opt.evolve:
|
||||
last = Path(check_file(opt.resume) if isinstance(opt.resume, str) else get_latest_run())
|
||||
opt_yaml = last.parent.parent / 'opt.yaml' # train options yaml
|
||||
opt_data = opt.data # original dataset
|
||||
|
Loading…
x
Reference in New Issue
Block a user