Fix `eval` to `val` in dvc.py (#3771)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
main
David de la Iglesia Castro 1 year ago committed by GitHub
parent e71c0e3748
commit ba523e6b3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ultralytics/utils/callbacks/dvc.py

@ -117,8 +117,8 @@ def on_train_end(trainer):
for metric, value in all_metrics.items():
live.log_metric(metric, value, plot=False)
_log_plots(trainer.plots, 'eval')
_log_plots(trainer.validator.plots, 'eval')
_log_plots(trainer.plots, 'val')
_log_plots(trainer.validator.plots, 'val')
_log_confusion_matrix(trainer.validator)
if trainer.best.exists():

Loading…
Cancel
Save