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
Profile picture
UptightCoyote42
Moderator
0 Questions, 4 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 I Wonder What Is The Best Practice Today To Fetch A Model From Another Task By Models Name Or Id ? Currently, I See This Can Be Done As

well, if you know your model id you can simplify things a little bit.
mdl = clearml.Model(model_id)
m_output = mdl.get_local_copy()

3 years ago
0 Hi, I'Ve Asked

Not sure if this is a valid solution, but if you have your docker container already pre-configured with all requirements - you can set the Task to ignore/disregards your DEV requirements. It should look somewhat like this -

` def ignore_task_requirements():
task=Task.current_task()
with task._edit_lock:
task.reload()
script = task.data.script

    pip_req = script.requirements["pip"]
    pip_req_splitted = pip_req.split("\n")
    pip_req_commented = '\n#'....
3 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

In our team there is a similar requirement, some scripts requires external dependencies. We have built several Docker images and these can be selected within the script itself by using -
task.set_base_docker("<docker-image>:<tag>")

3 years ago
0 Question About Out-Of-Python Dependencies. For Example Nltk Requires

Docker hub is probably not a bad idea. In my case there were only two workstations so I've copied the Dockerfile and rebuilt the image

3 years ago