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
SmoothPigeon36
Moderator
1 Question, 5 Answers
  Active since 25 May 2024
  Last activity 3 months ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
12 Answers
498 Views
0 Votes 12 Answers 498 Views
3 months ago
0 Hi Everyone! I'Ve Been Using Clearml For A While And I Love It, But I Recently Noticed A Strange Issue. From The "Debug Samples" Tab, Where I Can See Some Training Samples From My Dataset, When I Click On Some Thumbnails The Image I Can See Does Not Match

I just check that, you're right! The iteration and metrics are definitely the same (same epoch, metric is "debug_samples" ), but the variant was initially different (it was a simple f"{batch}{elem}" ). The bug started showing up when I started using the variant (or series) to show the label as text. As a consequences, I end up with samples from the same batch, with the same label being reported with the same iteration+metric+variant.

3 months ago
0 Hi Everyone! I'Ve Been Using Clearml For A While And I Love It, But I Recently Noticed A Strange Issue. From The "Debug Samples" Tab, Where I Can See Some Training Samples From My Dataset, When I Click On Some Thumbnails The Image I Can See Does Not Match

hi @<1523703436166565888:profile|DeterminedCrab71> thank you for looking into this! I'm not sure if this is the problem. What I'm trying to do is simply displaying some of the images produced by my data generator in clearml. I have a callback that at the beginning of each epoch, for each image in the batch, simply calls report_image on every element of the batch. Because data augmentation is part of the elements I want to investigate, the same images are reported at every epoch. However...

3 months ago