Skip to content
Snippets Groups Projects
Commit 5104b614 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[engine.callbacks] Be more specific about the type of missing logs

parent 0aadc7ea
No related branches found
No related tags found
1 merge request!39Add indication of lowest validation loss epochs on loss plots
Pipeline #87407 failed
......@@ -255,7 +255,7 @@ class LoggingCallback(lightning.pytorch.Callback):
f"interval to a suitable value, so it allows some measures "
f"to be performed. Note this is only possible if the time "
f"to log a single measurement point is smaller than the "
f"time it takes to train a single epoch."
f"time it takes to **train** a single epoch."
)
else:
for metric_name, metric_value in aggregate(metrics).items():
......@@ -308,7 +308,7 @@ class LoggingCallback(lightning.pytorch.Callback):
f"interval to a suitable value, so it allows some measures "
f"to be performed. Note this is only possible if the time "
f"to log a single measurement point is smaller than the "
f"time it takes to train a single epoch."
f"time it takes to **validate** a single epoch."
)
else:
for metric_name, metric_value in aggregate(metrics).items():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment