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
Profile picture
AbruptJellyfish92
Moderator
2 Questions, 5 Answers
  Active since 21 June 2023
  Last activity one year ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
6 Answers
970 Views
0 Votes 6 Answers 970 Views
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi all, What is the best practice to handle connection errors and timeouts to ClearML server? is there a configuration in the python SDK for timeouts / max a...
one year ago
0 Hello Everyone! I Encountered A Very Weird Behaviour Of

The report_histogram function doesn't make any sense in clearml. The expected values are the heights of the bars. (it assumes that you've already calculated the histogram).

I think that they should rename it to "report_bar" or something like that, and "report_histogram" will calculate the histogram for you (same as matplotlib's plt.hist function. @<1574207105437536256:profile|HungryCat90>

anyway, for histogram I'm using lines plots instead, it is the only way you can compare later on with...

one year ago
0 Hi All, I'M Want To Compare 2 Different Tasks Plots, E.G., I Have A Histogram Of F1 Values For 2 Different Models. However, They Histogram Comparison Only Shrinks The Bars (See Attached Image). Is There A Way To Make The Bars With Normal Width / Compare T

In addition, when I report a histogram with many bins (for example, 60) i get the same result of thin bars:
Seems like a problem with the configurations of the UI plots in general
image

one year ago
0 Hi All, I'M Want To Compare 2 Different Tasks Plots, E.G., I Have A Histogram Of F1 Values For 2 Different Models. However, They Histogram Comparison Only Shrinks The Bars (See Attached Image). Is There A Way To Make The Bars With Normal Width / Compare T

Hi @<1523701070390366208:profile|CostlyOstrich36> ,
Here is the snippet and the original histogram:

for metric in evaluator.metrics:
print(f"reporting plots for metric {metric}")
task.logger.report_single_value("avg_" + metric, float(results[metric].mean()))
plt.figure()
plt.hist(results[metric].dropna(), bins=25)
fig = plt.gcf()
task.logger.report_matplotlib_figure(metric, metric, fig)
![image](https://cle...

one year ago