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
Hey. I Want To Run Task Remotely, But Neither The Clearml Server Nor Worker Can Clone The Repository With Training Code (They Dont Have Access). Can I Somehow Tell The Task That It Has To Use Local Copy Of The Package? I.E.:

hey. I want to run task remotely, but neither the clearml server nor worker can clone the repository with training code (they dont have access). can i somehow tell the task that it has to use local copy of the package? I.e.:
Task.force_store_standalone_script(True) Task.add_requirements(local_directory_with_setup_py_in_it) clearml_task = Task.init(....)Unfortunately I can only pass name of package or requirementst.txt to "add_requirements". What could be a workaround?

  
  
Posted 2 years ago
Votes Newest

Answers 4


Hi,

can you paste the error you're getting?

  
  
Posted 2 years ago

Why not give ClearML read-only access credentials to the repository?

  
  
Posted 2 years ago

okay, after digging a little, I think the snippet above is not valid. "standalone script" - assumes just a single python file. I still need repo where training scripts live. It just cant be cloned on remote worker. Is it possible to somehow pack local repo to be executed on remote worker?

  
  
Posted 2 years ago

was rather on infrastructure level - worker doesnt have access to the repository. I found workaround of using mirror repo that is accessible by worker..

  
  
Posted 2 years ago
1K Views
4 Answers
2 years ago
one year ago
Tags