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 Guys, When Reporting Debug Images, Is There Any Way To Use A String Instead Of An Int In

Hi Guys,
When reporting debug images, is there any way to use a string instead of an int in iteration ?
The use case is for testing/eval experiments. For example, show bboxes with IoU>X, where X in [0,1]. The series is already used with for something else.

  
  
Posted 3 years ago
Votes Newest

Answers 6


I need to group images in a similiar way to what is done by iteration , but based on a string value which will be visible in the UI

  
  
Posted 3 years ago

because series in already used. Think of something like showing debug images based on 2 independent parameters for the model

  
  
Posted 3 years ago

The iteration in my use case doesn't make much sense (I'm evaluation a model)

  
  
Posted 3 years ago

Hmmm why don't you use "series" ?
(Notice that with iterations, there is a limit to the number of images stored per title/series , which is configurable in trains.conf, in order to avoid debug sample explosion)

  
  
Posted 3 years ago

ShallowCat10 so you mean like meta-data on top of the image? or another level of title series ?
because, the iteration field itself is an integer...

  
  
Posted 3 years ago

The only workaround I can think of is :
series = series + 'IoU>X'
It doesn't look that bad 🙂

  
  
Posted 3 years ago
637 Views
6 Answers
3 years ago
one year ago
Tags