Skip to content

Commit

Permalink
Validate best.pt on train end (ultralytics#4889)
Browse files Browse the repository at this point in the history
* Validate best.pt on train end

* 0.7 iou for COCO only

* pass callbacks

* active model.float() if not half

* print Validating best.pt...

* add newline
  • Loading branch information
glenn-jocher committed Sep 26, 2021
1 parent dd43c84 commit fb7ad78
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
27 changes: 13 additions & 14 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,7 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary
single_cls=single_cls,
dataloader=val_loader,
save_dir=save_dir,
save_json=is_coco and final_epoch,
verbose=nc < 50 and final_epoch,
plots=plots and final_epoch,
plots=False,
callbacks=callbacks,
compute_loss=compute_loss)

Expand Down Expand Up @@ -404,23 +402,24 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary
# end training -----------------------------------------------------------------------------------------------------
if RANK in [-1, 0]:
LOGGER.info(f'\n{epoch - start_epoch + 1} epochs completed in {(time.time() - t0) / 3600:.3f} hours.')
if not evolve:
if is_coco: # COCO dataset
for m in [last, best] if best.exists() else [last]: # speed, mAP tests
for f in last, best:
if f.exists():
strip_optimizer(f) # strip optimizers
if f is best:
LOGGER.info(f'\nValidating {f}...')
results, _, _ = val.run(data_dict,
batch_size=batch_size // WORLD_SIZE * 2,
imgsz=imgsz,
model=attempt_load(m, device).half(),
iou_thres=0.7, # NMS IoU threshold for best pycocotools results
model=attempt_load(f, device).half(),
iou_thres=0.7 if is_coco else 0.6, # best pycocotools results at 0.7
single_cls=single_cls,
dataloader=val_loader,
save_dir=save_dir,
save_json=True,
plots=False)
# Strip optimizers
for f in last, best:
if f.exists():
strip_optimizer(f) # strip optimizers
save_json=is_coco,
verbose=True,
plots=True,
callbacks=callbacks) # val best model with plots

callbacks.run('on_train_end', last, best, plots, epoch)
LOGGER.info(f"Results saved to {colorstr('bold', save_dir)}")

Expand Down
3 changes: 1 addition & 2 deletions val.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ def run(data,

# Half
half &= device.type != 'cpu' # half precision only supported on CUDA
if half:
model.half()
model.half() if half else model.float()

# Configure
model.eval()
Expand Down

0 comments on commit fb7ad78

Please sign in to comment.