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
I Have A Question About The Clean Up Script. The Cleanup Service Can Remove Model Checkpoints That Are Saved Somewhere On Disk. However The Cleanup Service Is Also Running In A Docker Container. How Is It Possible That The Cleanup Service Has Access And C

I have a question about the clean up script. The cleanup service can remove model checkpoints that are saved somewhere on disk. However the cleanup service is also running in a docker container. How is it possible that the cleanup service has access and can remove these model checkpoints?

  
  
Posted 2 years ago
Votes Newest

Answers


Hi GreasyPenguin14

However the cleanup service is also running in a docker container. How is it possible that the cleanup service has access and can remove these model checkpoints?

The easiest solution is to launch the cleanup script with a mount point from the storage directory, to inside the container ( -v <host_folder>:<container_folder> )
The other option, which clearml version 1.0 and above supports, is using the Task.delete, that now supports deleting the artifacts and models using an API request.
wdyt?

  
  
Posted 2 years ago