Logging tensorboard not showing loss #10925
-
I am trying to get my losses in Tensorboard, but I am quite confused.
And this is how I start training:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Are you using the latest Lightning version? If yes, this won't work. The new way for logging is through |
Beta Was this translation helpful? Give feedback.
Are you using the latest Lightning version? If yes, this won't work. The new way for logging is through
self.log
instead of returning it from the step methods. See the docs here.