The validation_end is work only if I use the validation_step? #5823
Replies: 5 comments
-
Yes, |
Beta Was this translation helpful? Give feedback.
-
Thank, I am looking to put some log to tensorboard at the end of epoch without using validation_step. Is there other method than validation_end and training_step that can log to tensorboard?
This doesn't seem to work, |
Beta Was this translation helpful? Give feedback.
-
There's a built-in Tensorboard logger in master if that fits your needs. |
Beta Was this translation helpful? Give feedback.
-
Ah, I misunderstood. It doesn't make sense to return validation logs if you're not actually doing validation. If you're trying to log training statistics, returning from Otherwise, you might need to manually call the logger in self.logger.log_metrics(tensorboard_logs) |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I run the first sample code from README.md and change this
to this
I notice that their are no log of 'val_loss' on tensorboard (I expected it should be constant 5).
And I change code to this
The val_loss is show on tensorboard a constant 5.
My question
The validation_end is work only if I use the validation_step?
Beta Was this translation helpful? Give feedback.
All reactions