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, I Am New To Clearml But Already Really Impressed. I Have What Seems Like A Dumb Question But Asking It Anyways... I Have A Matplotlib Figure Which Is Automatically Captured And Displayed Correctly In The Plots Tab When I Do A

Hi, I am new to ClearML but already really impressed. I have what seems like a dumb question but asking it anyways... I have a matplotlib figure which is automatically captured and displayed correctly in the plots tab when I do a plt.show() . However, it also displays in my IDE which I don't want. Is there a way for ClearML to automatically capture without a show? If not, what is the recommended method to report the plot but not using show? Thanks for any help

  
  
Posted one year ago
Votes Newest

Answers 2


Just realized that plt.savefig() works as well

  
  
Posted one year ago

Hi PanickyLion56
Yep savefig also works, you can also do,
from clearml import Logger Logger.current_logger().report_matplotlib_figure(title="My Plot Title", series="My Plot Series", iteration=10, figure=plt)https://github.com/allegroai/clearml/blob/0c5d12b830987aa9bb8d44d81e92ff9198008f29/examples/frameworks/matplotlib/matplotlib_example.py#L25

  
  
Posted one year ago
610 Views
2 Answers
one year ago
one year ago
Tags