From 53e842a3d38eb239e765dcb1fc17b052fd6ce6ca Mon Sep 17 00:00:00 2001 From: FarehaNousheen Date: Wed, 16 Feb 2022 06:40:27 +0530 Subject: [PATCH] updation of timer_docstring --- ignite/handlers/timing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ignite/handlers/timing.py b/ignite/handlers/timing.py index 16c65dc0570..610621834fa 100644 --- a/ignite/handlers/timing.py +++ b/ignite/handlers/timing.py @@ -22,7 +22,8 @@ class Timer: Note: When using ``Timer(average=True)`` do not forget to call ``timer.step()`` every time an event occurs. See the examples below. - + Note: + Timer if attached to measure single epoch time, it can also record the time of all handlers attached prior to Timer. To obtain the actual time taken for the epoch completion, handlers will have to be rearranged. Examples: Measuring total time of the epoch: