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'M Logging Plots Using Clearml Sdk. The Logging Is Automatic By Running Matplotlib And Seaborn. One Of My Plots Is Sns.Barplot, In The Pycharm Run I Get All The Ticks Name But In The Clearml Dashboard Results It Is Without The Ticks Names. I'Ll Be Ha

Hi, I'm logging plots using clearml sdk. The logging is automatic by running matplotlib and seaborn.
One of my plots is sns.barplot, in the pycharm run I get all the ticks name but in the clearml dashboard results it is without the ticks names.
I'll be happy for some help with it. Thanks!

  
  
Posted 2 years ago
Votes Newest

Answers 3


Hi, can you provide an example of how you report them?

  
  
Posted 2 years ago

Can you maybe provide a snippet I can play with?

  
  
Posted 2 years ago

self.notify('Logging feature importance') feature_importance_series = feature_importance_series[:limit] sns.barplot(feature_importance_series.values, feature_importance_series.index) plt.title('feature importance') plt.show()

  
  
Posted 2 years ago