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
Can

Can report_histogram take x values as characters?
Can layout_config take such x values?
For example, xs = [‘a’, ‘b’, ‘c’] and ys = [0.1, 0.2, 0.3]
logger.report_histogram(title=‘title’, series=‘series’,
iteration=0, np.array(ys), xaxis=‘abc_series’, layout_config={??})

I tried report_plotly and could generate such a histogram with character type x values. But, when two different experiments were compared, two separate plots were generated. If these two plots can be overlapped like by using report_histogram , I would also take this route of report_plotly .
Thank you.

  
  
Posted 3 years ago
Votes Newest

Answers 2


Hi DashingHedgehong5
Is the text the ,labels on the histogram bucket ?

https://allegro.ai/clearml/docs/rst/references/clearml_python_ref/logger_module/logger_logger.html#clearml.logger.Logger.report_histogram

Notice the xlabels arguments, id this what you are looking for ?

  
  
Posted 3 years ago

Thank you for your answer here as well!

  
  
Posted 3 years ago