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
Hello I Have A Question Please, I'M Having A Hard Time Understanding How Clearml-Data Works With Docker, If I Want To Test/Train A Model Using A Dataset That I Have Locally For Example, And Then I Want To Re-Test/Train It Using Clearml-Agent Inside A Dock

hello i have a question please, I'm having a hard time understanding how clearml-data works with docker, if i want to test/train a model using a dataset that I have locally for example, and then i want to re-test/train it using clearml-agent inside a docker container, how can i make it use the dataset that i have locally and not re-download a new one to use in its cache? for example for training yolov11, i get the following message even though the dataset is already available locally:
thank you in advance
image

  
  
Posted 4 months ago
Votes Newest

Answers 2


Hi @<1820993248525553664:profile|DisturbedReindeer69> , I second what @<1822805241150574592:profile|ShinySparrow39> , said. You can basically mount folders between your files system to the container using arguments such as -v , in the case of ClearML, you would want to mount the external ClearML cache folder ( ~/.clearml usually) of clearml to the internal cache folder inside the container.

  
  
Posted 4 months ago

Hi,
I am not sure what you are trying to do, but docker containers do not usually have access to the files on your system. Have you tried mounting your local file using the -v docker argument at startup?

  
  
Posted 4 months ago
670 Views
2 Answers
4 months ago
4 months ago
Tags
Similar posts