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 Get This Error When Running Multiple Jobs On The Same Dataset, Would Someone Be Able To Help Debug?:

Hello! I get this error when running multiple jobs on the same dataset, would someone be able to help debug?:
FileNotFoundError: Image Not Found /clearml_agent_cache/storage_manager/datasets/ds_7508e23b2e49481bb170295f7bf43eed/train/images/W.r.1.jpg

  
  
Posted 13 days ago
Votes Newest

Answers 5


We are getting the dataset like this:

clearml_dataset = Dataset.get(
    dataset_id=config.get("dataset_id"), alias=config.get("dataset_alias")
)
dataset_dir = clearml_dataset.get_local_copy()
  
  
Posted 13 days ago

Our current setup is one clearml agent per GPU on the same machine

  
  
Posted 13 days ago

Seems to work!

  
  
Posted 13 days ago

I think it might be related to the new run overwriting in this location

  
  
Posted 13 days ago

Trying this:

clearml_dataset = Dataset.get(
    dataset_id=config.get("dataset_id"), alias=config.get("dataset_alias")
)
dataset_dir = clearml_dataset.get_local_copy()

destination_dir = os.path.join("/datasets", os.path.basename(dataset_dir))

shutil.copytree(dataset_dir, destination_dir)

results = model.train(
    data=destination_dir + "/data.yaml", epochs=config.get("epochs"), device=0
)
  
  
Posted 13 days ago