LightningModule.log does not work for validation metrics #6748
-
I implemented the validation loop like this (using
I verified that
What is the right way to implement validation accuracy? I'm new to lightning, but I looked at the documentation and couldn't find the answer. Thanks for your help. A few related posts:
Update: Update: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
-
Set tensorboard --logdir lightning_logs cheers |
Beta Was this translation helpful? Give feedback.
Set
prog_bar=True
in self.log()Or you can just open tensorboard to see the graphical logs
tensorboard --logdir lightning_logs
cheers