How to do model comparison with pytorch lightning #10764
-
I want to test performance of my model on a few different feature sets and visualize losses of different features on the same plot in tensorboard.
But this is creating different versions inside tensorboard logging. Does each call to Lightning module create a new version ? Is this because the loggers are not shared across feature sets in my current design ? How do I share logger across different feature sets or different models ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found a rather simple solution that worked for me. Put different features/different models under different directories and fire up tensorboard in root directory.
|
Beta Was this translation helpful? Give feedback.
Found a rather simple solution that worked for me. Put different features/different models under different directories and fire up tensorboard in root directory.