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
Hey All. Wanting To Log

Hey all. Wanting to log matplotlib figures to ClearML, but it seems that the integration relies on a call to plt.show() or plt.savefig() in order to actually log the figure? I would rather not do either of these things in my training code — would it be possible to simply allow direct logging of the figure?

  
  
Posted 4 months ago
Votes Newest

Answers 3


Hi @<1674226153906245632:profile|PreciousCoral74> , you certainly can, just use the Logger module 🙂
None

  
  
Posted 4 months ago

Hi @<1674226153906245632:profile|PreciousCoral74> !

Sadly, Logger.report_matplotlib_figure(…) doesn't seem to log plots. Only the automatic integration appears to behave.

What do you mean by that? report_matplotlib_figure should work. See this example on how to use it: None .
If it still doesn't work for you, could you please share a code snippet that could help us track down the issue?

  
  
Posted 4 months ago

Hi @<1523701070390366208:profile|CostlyOstrich36> , thanks for the speedy reply. Sadly, Logger.report_matplotlib_figure(…) doesn’t seem to log plots. Only the automatic integration appears to behave.

  
  
Posted 4 months ago