How to see logged values after training #8980
Unanswered
erickrf
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
Replies: 1 comment 4 replies
-
@erickrf It's best if you track these yourself in the LightningModule or perhaps with a logger (e.g. CSVLogger). Lightning doesn't track the history of all logged values because that would consume memory and potentially accumulate growing memory over a long time. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
During training and validation, my model logs accuracy and loss. These values are shown in the progress bar, but are lost once new ones replace them.
How can I access the history of logged metrics after training? I tried
trainer.logged_metrics
but it only has the last values of the metrics.Beta Was this translation helpful? Give feedback.
All reactions