Logging wall time during training #540
-
|
This may be a dumb question, but I have not been able to find a way to log simple wall time during training in 0.7.0 and above. Prior to 0.7.0 there was |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @apoletayev , Definitely not a dumb question -- it's not obvious at all. For weights and biases, I usually make a manual plot using |
Beta Was this translation helpful? Give feedback.

Hi @apoletayev ,
Definitely not a dumb question -- it's not obvious at all. For weights and biases, I usually make a manual plot using
_runtimeon the y-axis andtrainer/global_stepon the x-axis. e.g.Does this help for your use case? I imagine that we could also write custom callbacks or maybe PyTorch Lightning has some available for reporting more intricate timing details. If you are looking into writing custom code for custom functionality, we have an extension package docs page to help you get started. The NequIP framework is designed to be flexible enough for other developers to write extra code for custom functionality without having to fork a copy of
nequipitself just to make ch…