From 5104b614f4971761b6bbbfa17ff7bf0b81725018 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Wed, 22 May 2024 14:14:19 +0200 Subject: [PATCH] [engine.callbacks] Be more specific about the type of missing logs --- src/mednet/engine/callbacks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mednet/engine/callbacks.py b/src/mednet/engine/callbacks.py index c1f66d8c..3d108a8d 100644 --- a/src/mednet/engine/callbacks.py +++ b/src/mednet/engine/callbacks.py @@ -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(): -- GitLab