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 See That Debug Samples Are Taking Up A Huge Amount Of Space. I Want To Limit The Amount Of Debug Images Which Are Stored. I See There Is An Option For That Here:

Hi, I see that debug samples are taking up a huge amount of space. I want to limit the amount of debug images which are stored. I see there is an option for that here: https://clear.ml/docs/latest/docs/references/sdk/logger/#set_default_debug_sample_history . However, I am storing these images implicitly via TensorBoard, so I never explicitly define a logger. How would I limit them in this case?

  
  
Posted 2 years ago
Votes Newest

Answers 6


Hi CloudySwallow27

Is there a way to still use the auto_connect but limit the amount of debug imgs?

Basically you can set the number of image it will store for you (per title/series combination)m the way it works it rotates the image names so essentially overriding old images (the UI is ware and will only show the last X of them)
See here on setting it:
https://github.com/allegroai/clearml/blob/81de18dbce08229834d9bb0676446a151046e6a7/docs/clearml.conf#L32

  
  
Posted 2 years ago

perfect. exactly what i was looking for!

  
  
Posted 2 years ago

SourLion48

  
  
Posted 2 years ago

Hello

  
  
Posted 2 years ago

Hi CloudySwallow27 ,

I think currently the way to do this is by disabling the framework detection and reporting the debug images manually.

You can do this by Task.init( auto_connect_frameworks=False )

  
  
Posted 2 years ago

huh. i really like how easy it is w/ the automated TB. Is there a way to still use the auto_connect but limit the amount of debug imgs?

  
  
Posted 2 years ago