Fix: wandb reporting error if no positive examples (#17544)
Co-authored-by: UltralyticsAssistant <web@ultralytics.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
a132920476
commit
1790ca0f88
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ def on_train_end(trainer):
|
|||
art.add_file(trainer.best)
|
||||
wb.run.log_artifact(art, aliases=["best"])
|
||||
# Check if we actually have plots to save
|
||||
if trainer.args.plots:
|
||||
if trainer.args.plots and hasattr(trainer.validator.metrics, "curves_results"):
|
||||
for curve_name, curve_values in zip(trainer.validator.metrics.curves, trainer.validator.metrics.curves_results):
|
||||
x, y, x_title, y_title = curve_values
|
||||
_plot_curve(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue