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
ShinySparrow39
Moderator
1 Question, 10 Answers
  Active since 15 April 2025
  Last activity 4 months ago

Reputation

0

Badges 1

Eureka!
0 Votes
2 Answers
576 Views
0 Votes 2 Answers 576 Views
Hi all, I am trying to expand our training infrastructure using Clearml-agents, I have a train_example script that I want an agent to be able to pick up and ...
4 months ago
0 Hello I Have A Question Please, I'M Having A Hard Time Understanding How Clearml-Data Works With Docker, If I Want To Test/Train A Model Using A Dataset That I Have Locally For Example, And Then I Want To Re-Test/Train It Using Clearml-Agent Inside A Dock

Hi,
I am not sure what you are trying to do, but docker containers do not usually have access to the files on your system. Have you tried mounting your local file using the -v docker argument at startup?

4 months ago
0 Hi All, I Am Trying To Expand Our Training Infrastructure Using Clearml-Agents, I Have A

Thanks! I did not know that, I think I can write some logic with that in mind

4 months ago
0 Hi There

Hi, Are you sure that your workers are connected to the right queue? It looks to me like they are connected to the services and/or default queue. If you click on the worker in the web UI, you can see which queue that particular worker is listening to.

4 months ago
0 Hey Everyone. Can Someone Help Me Understand How Task

This is the snippet that works for me. Please be aware that I use a custom Task.init call at the start of my script ( repo/main_scripts/train.py ), so if you don't do that you need to set add_task_init_call to True.

try:
        repo = os.popen('git remote -v').read().strip().split('\n')
        if len(repo) > 2:
            raise RuntimeError('More than one git repository found')
        repo = repo[0].split('\t')[-1].split(' ')[0]
        branch = os.popen('git rev-parse --abbrev-r...
3 months ago
0 Hey Everyone. Can Someone Help Me Understand How Task

Hi,
I think the repo has to be the git location, not your local path, so something like

git@gitlab.com/repo_name or git@github.com:Project-MONAI/VISTA.git

You can run git remote -v in the command line to find what your current repo is.

3 months ago
0 Hey Everyone. Can Someone Help Me Understand How Task

Ah yeah I also encountered this, that was actually one of the reasons we did not move over to fully incorporate docker Agents into our workflow. If you find a soliution, I would be also very curious. Maybe @<1523701070390366208:profile|CostlyOstrich36> has a solution

3 months ago
0 Hi, I'M Experiencing With Hydra Integration With Clearml. As The Docs

Hi,
I am experiencing the same thing (although I use old-fashioned dicts as my configuration object). The way that I work around this is by downloading the whole configuration using get_configuration_object_as_dict('OmegaConf'), modifying this dict and then reuploading it using connect_configuration(new_dict) . If there is a better way, I would definitely like to know!

4 months ago
0 Hi, I Was Wondering If There Is A Way To Attach Files That Are Not Committed To Git To Task Run? I'M Aware To The Option Of

Hi,
If your config file is a YAML or JSON or something similar, you can just connect it to your task using task.connect_configuration(dict) after loading it in your script. Then your full configuration can be seen in ClearML and retrieved in your script using task.get_configuration_object_as_dict()
see None

4 months ago
0 Hi All, What Is The Best Way Of Getting Clearml To Pull Code From Github Repos? At The Moment We Can Pull Using A Users Ssh Credentials, But Afaik It'S Not Possible To Create "Service Accounts" For Github. The Preferred Method For

Hi, I am not familiar with GitHub, but the way that I set it up for GitLab is by creating a Personal Access token and using that under the {agent: git_pass} option in the clearml.conf file

4 months ago