Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi! Using Pytorchlightning. How Do I Define The Names Of The Plots In The Legend?

Hi! Using PytorchLightning. How do I define the names of the plots in the legend?

  
  
Posted 2 years ago
Votes Newest

Answers 8


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.)

  
  
Posted 2 years ago

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

  
  
Posted 2 years ago

Do you report with LightningModule log function? something like:
self.log('train_loss', loss)?

  
  
Posted 2 years ago

And you like each series to be in a different plot?

  
  
Posted 2 years ago

This is the logging

  
  
Posted 2 years ago

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?!

  
  
Posted 2 years ago

Some tasks have so many models, it gets really messy without proper names 😅

  
  
Posted 2 years ago

Yes, thanks for your help! Now I need to find how to change the PL naming

  
  
Posted 2 years ago
597 Views
8 Answers
2 years ago
one year ago
Tags