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 All, I Use .Get_Local_Copy() To Get A Local Copy For Each Of My Artifacts Logged In A Task. I Currently Have 160 Files Which I Want To Get A Local Copy. Each Artifact Is A Numpy Array (.Npz File) Uploaded Using .Upload_Artifact() Before. When I Run .Ge

Hi all, I use .get_local_copy() to get a local copy for each of my artifacts logged in a task. I currently have 160 files which I want to get a local copy. Each artifact is a numpy array (.npz file) uploaded using .upload_artifact() before. When I run .get_local_copy() for each artifact, it seems they are downloaded to my cache/storage_manager/... according to printed log information. But after the downloading when I check the storage place, only the latest 96 of these files appear, first subset got lost. Is there any parameter that adjusts the "number of files that can be stored in the cache"? I am using clearml python version 1.0.3 to upload artifacts and get the artifacts back from a task.

  
  
Posted 3 years ago
Votes Newest

Answers 2


Hi ScatteredClams84

Is there any parameter that adjusts the "number of files that can be stored in the cache"? I am using clearml python version 1.0.3 to upload artifacts and get the artifacts back from a task. (edited)

Yes you are correct, the default value is 100 entries.
You can configure it in the clearml.conf, just add:
sdk.storage.cache.default_cache_manager_size = 1000or from code:
from clearml.storage.cache import CacheManager CacheManager.get_cache_manager(cache_file_limit=1000)

  
  
Posted 3 years ago

awesome thank you!

  
  
Posted 3 years ago
708 Views
2 Answers
3 years ago
one year ago
Tags