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
GiganticMole91
Moderator
11 Questions, 31 Answers
  Active since 10 January 2023
  Last activity 2 months ago

Reputation

0

Badges 1

31 × Eureka!
0 Votes
4 Answers
244 Views
0 Votes 4 Answers 244 Views
Hi guys. I'm struggling to get the Cleanup Service working on our on-prem setup. We are using the built in service ( None ) but see loads of errors like: Cou...
4 months ago
0 Votes
7 Answers
628 Views
0 Votes 7 Answers 628 Views
one year ago
0 Votes
2 Answers
620 Views
0 Votes 2 Answers 620 Views
one year ago
0 Votes
4 Answers
580 Views
0 Votes 4 Answers 580 Views
Hi guys, I'm trying to familiarize myself with Hyperparameter Optimization using ClearML. It seems like there is a discrepancy between clearml-param-search C...
one year ago
0 Votes
2 Answers
684 Views
0 Votes 2 Answers 684 Views
one year ago
0 Votes
9 Answers
676 Views
0 Votes 9 Answers 676 Views
Hey, We're seeing a lot of issues with our ClearML self-hosted server these days; it seems like the API times out while talking to elasticsearch: 2022-10-22 ...
one year ago
0 Votes
3 Answers
196 Views
0 Votes 3 Answers 196 Views
I have an issue with how clearml logs checkpoints. We have a training setup with pytorch-lightning + clearml, where we use lightning.pytorch.ModelCheckpoint ...
3 months ago
0 Votes
12 Answers
193 Views
0 Votes 12 Answers 193 Views
3 months ago
0 Votes
18 Answers
671 Views
0 Votes 18 Answers 671 Views
one year ago
0 Votes
6 Answers
607 Views
0 Votes 6 Answers 607 Views
Hi guys, Is there a way, analogous to using Task.set_credentials(...) , to set credentials for storage programmatically? Like, Task.setup_storage(...) ? I'm ...
one year ago
0 Votes
4 Answers
231 Views
0 Votes 4 Answers 231 Views
Hi all, Is there a way to force an agent to use https although the scheduled task is using ssh for git?
3 months ago
0 Hi All. I'M Setting Up An Model Export Script That Will Export Trained Models For Edge Deployment. I Initially Thought About Setting It Up As A Trigger Scheduler, And To Have It Trigger On Tags On A Published Model, But As Time Goes By The Trigger Schedul

Just wanted to share a workaround for using a TriggerScheduler to execute a script using the latest commit of a given branch, without relying on cloning a Task. Don't know if it has been shown before in here 🙂

from clearml import Model, Task
from clearml.automation import TriggerScheduler

def trigger_model_func(model_id: str):
    model = Model(model_id)

    print(f"Triggered model export for model '{model.name}' ({model_id})")

    # NOTE: To execute from the branch of
    # task...
2 months ago
Show more results compactanswers