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
HighKitten20
Moderator
5 Questions, 8 Answers
  Active since 07 September 2024
  Last activity 16 days ago

Reputation

0

Badges 1

8 × Eureka!
0 Votes
0 Answers
85 Views
0 Votes 0 Answers 85 Views
Hi folks! Can someone advise/share examples on how to properly combine Hydra and ClearML for working with hyperparameters and DDP? I tried to follow the docu...
one month ago
0 Votes
5 Answers
147 Views
0 Votes 5 Answers 147 Views
2 months ago
0 Votes
2 Answers
122 Views
0 Votes 2 Answers 122 Views
Hi! Could you please help with the following question: is it possible to execute the pip install -e . command after our code is pulled from git? The thing is...
2 months ago
0 Votes
3 Answers
103 Views
0 Votes 3 Answers 103 Views
Hello! I would like to use my own Docker image for a ClearML Task pod. My Docker registry is AWS ECR with authentication. For a regular deployment, I use a s...
29 days ago
0 Votes
3 Answers
81 Views
0 Votes 3 Answers 81 Views
Hello! I’m using ClearML on a Kubernetes cluster and have encountered a strange behavior when training a model from a non-main (master) branch. In my code ( ...
23 days ago
0 Hi There! I Am Using A Custom Clearml Installed In K8S Using The Official Helm-Chart (With Some Modifications). I Am Trying To Set Up Training That Runs From An Engineer’S Local Laptop In The K8S Cluster Using Clearml-Task. The Single File Variant (E.G. T

Hi Martin! About pip install -e . - I had that made through agent.package_manager.extra_pip_install_flags flag like below:

agent {
   package_manager: {
          extra_pip_install_flags: ["-e", "." ],
        }
}

Thanks for your help!

2 months ago
0 Hello! I Would Like To Use My Own Docker Image For A Clearml Task Pod. My Docker Registry Is Aws Ecr With Authentication. For A Regular Deployment, I Use A Secret Added To The Deployment As Follows:

got sick and just now got to my laptop. Yep, this works great. Thanks again for the advice, @<1729671499981262848:profile|CooperativeKitten94>

k get deployment/clearml-agent -o yaml | grep -A2 imagePullSecrets
      imagePullSecrets:
      - name: regcred
      initContainers:
16 days ago
0 Hello! I’M Using Clearml On A Kubernetes Cluster And Have Encountered A Strange Behavior When Training A Model From A Non-Main (Master) Branch. In My Code (

Sorry, got sick and just now got to my laptop, I will try to find logs tomorrow (if they still there ’cause this is test environment and my teammate could already delete them).

16 days ago
0 Hello! I’M Using Clearml On A Kubernetes Cluster And Have Encountered A Strange Behavior When Training A Model From A Non-Main (Master) Branch. In My Code (

In short: the issue is that during model training, ClearML installs packages from both the experimental (non-master) branch and the master branch, leading to version conflicts đŸ™‚

23 days ago
0 Hi! Could You Please Help With The Following Question: Is It Possible To Execute The

@<1523701070390366208:profile|CostlyOstrich36> cool, it worked! Thanks a lot!

2 months ago
0 Hi There! I Am Using A Custom Clearml Installed In K8S Using The Official Helm-Chart (With Some Modifications). I Am Trying To Set Up Training That Runs From An Engineer’S Local Laptop In The K8S Cluster Using Clearml-Task. The Single File Variant (E.G. T

Hi @<1523701205467926528:profile|AgitatedDove14> ,
I set force_git_ssh_protocol: true (leaving git_user and git_pass empty) because I want to use ssh_key-based authentication.
The problem is that even when I mount the SSH key into the root home directory (e.g., /root/.ssh/id_rsa with the correct permissions set to 400) I still encounter the same error. I suspect that I might be doing something wrong, or perhaps the open-source version does not support this configuration. Could this ...

2 months ago
0 Hi There! I Am Using A Custom Clearml Installed In K8S Using The Official Helm-Chart (With Some Modifications). I Am Trying To Set Up Training That Runs From An Engineer’S Local Laptop In The K8S Cluster Using Clearml-Task. The Single File Variant (E.G. T

OK, I managed to do this via extra_docker_shell_script option in values.yaml:

clearmlConfig: |-
    sdk {
    }
    agent {
        force_git_ssh_protocol: true
        git_user: ""
        git_pass: ""
        extra_docker_shell_script: ["mkdir -p /root/.ssh", "cp /etc/ssh-key/..data/id_ed25519 /root/.ssh/", "ssh-keyscan -H bitbucket.mycompany.com >> /root/.ssh/known_hosts"]
       
    }

And now I have another issue - how can I run pip install -e . command? Is that possib...

2 months ago