Some tasks have so many models, it gets really messy without proper names 😅
Hi SuperficialDolphin93 ,
Can you share a small code example for you reporting?
About many series in the same plot, you can change this view with Group by None
Do you report with LightningModule
log
function? something like:self.log('train_loss', loss)
?
And you like each series to be in a different plot?
Every experiment includes fitting a model 7 times (once per subject). For a given metric (say train_acc) I would like to group the series into one plot (which is the default setting - good). What I want is to manually provide a name to each series equal to the subject name (Subject 1, Subject 2, etc.)
I want is to manually provide a name to each series equal to the subject name (Subject 1, Subject 2, etc.)
They appear as they are reported to TB. I think this is a PyTorchLightning thing... If you look as the TB produced, you will get the same naming schemes, no?!
Yes, thanks for your help! Now I need to find how to change the PL naming