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
LivelyBadger26
Moderator
6 Questions, 8 Answers
  Active since 14 March 2023
  Last activity one year ago

Reputation

0

Badges 1

8 × Eureka!
0 Votes
1 Answers
497 Views
0 Votes 1 Answers 497 Views
HI, is there a way to limit (archiving) deletion of tasks? for example: admin can delete all experiments but a user can only delete his experiments?
11 months ago
0 Votes
3 Answers
657 Views
0 Votes 3 Answers 657 Views
one year ago
0 Votes
1 Answers
491 Views
0 Votes 1 Answers 491 Views
Hi, its probably easy. but i can seem to understand 😞 does anyone here know? how do i set _allow_omegaconf_edit=true i have tried to add to the command line...
11 months ago
0 Votes
8 Answers
609 Views
0 Votes 8 Answers 609 Views
Hi, i have a remote task that i want to run on some of the GPUs of the remote machine. I set the agent in the remote machine on two of the GPUs. How do i que...
one year ago
0 Votes
5 Answers
619 Views
0 Votes 5 Answers 619 Views
one year ago
0 Votes
0 Answers
474 Views
0 Votes 0 Answers 474 Views
can i set it up through code?
11 months ago
0 Hi, I Configured An On-Prem File Server For Clearml Which Is Mounted On My Pc. I Am Trying Retrieve An Artifact From A Previous Run . Because This File Is Big I Want To Bring It To The Local Cache (On My Pc). However, When I Do The Following Artifact =Tas
def copy_task_artifact_to_local_cache(project_name=None, task_name=None, task_id=None, artifact_name=None):
    if task_id is not None:
        task = ClearmlTask.get_task(project_name=project_name, task_name=task_name)
    else:
        task = ClearmlTask.get_task(task_id=task_id)
    cache_dir = task.cache_dir
    artifact = task.artifacts[artifact_name]
    return artifact.get_local_copy()
one year ago
one year ago