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

Hi 👋 I am logging some figures on pytorch lightning using the example here. The figures are correctly saved on Tensorboard's images tab but unfortunately are not displayed on the clearml server. Has anyone encountered the same issue?

  
  
Posted 2 years ago
Votes Newest

Answers 5


The plot is generated and added to tensorboard but seems clearml is not catching it.

  
  
Posted 2 years ago

GrievingTurkey78 , which script in the repository are you running?

  
  
Posted 2 years ago

Let me work on it 👌

  
  
Posted 2 years ago

GrievingTurkey78 , can you provide a small self contained snippet to run?

  
  
Posted 2 years ago

I am using the code inside the on_train_epoch_end inside a metric. So the important part is:
` fig = plt.figure()

my plot

logger.experiment.add_figure("fig", fig)
plt.close() `

  
  
Posted 2 years ago