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
ManiacalLizard2
Moderator
31 Questions, 239 Answers
  Active since 05 June 2023
  Last activity 28 days ago

Reputation

0

Badges 1

92 × Eureka!
0 I Have A Docker Container That Have Clearml-Agent Running Inside In Normal Mode. The Agent Take On A Task And Execute It Fine. I Just Want To Somehow Log The Docker Image Version That The Agent Is Running Inside. I Start My Container With Something Like:

from what I understand, the docker mode were designed for apt based image and also running as root inside the container.
We have container that are not apt based and running not as root
We also do some "start up" that fetch credentials from Key Vault prior running the agent

one year ago
0 I Am Trying To Run One Agent On My Local Machine And One Agent On A Vm

had you made sure that the agent inside GCP VM have access to your repository ? Can you ssh into that VM and try to do a git clone ?

one year ago
0 For Some Reason, The Http Library Used By Clearml Does Not Like My Server'S Ssl. I Have Installed Clearml As A Docker Compose On My Truenas Scale With A Valid Certificate. When I Login Using Curl, All Is Good:

python library don't always use OS certificates ... typically, we have to set REQUESTS_CA_BUNDLE=/path/to/custom_ca_bundle_crt because requests ignore OS certificates

25 days ago
one year ago
0 Hi Everyone! I'M Working On A Solution That Uses Clearml Agent Running On An Ec2 Instances. These Instances (And Agents) Are Provisioned Automatically And Listen To A Specific Clearml Queue. Different Users Can Send Jobs To This Queue And Therefore To Th

if you are on github.com , you can use Fine tune PAT token to limit access to minimum. Although the token will be tight to an account, it's quite easy to change to another one from another account.

5 months ago
0 I Am Trying To Run One Agent On My Local Machine And One Agent On A Vm

(I never played with pipeline feature so I am not really sure that it works as I imagined ...)

one year ago
0 Hi. From Python, Is There Away To Check How Many Worker Is There In A Given Queue ?

Should I get all the workers None
Then go through them and count how many is in my queue of interest ?

29 days ago
one year ago
0 Hi. From Python, Is There Away To Check How Many Worker Is There In A Given Queue ?

got it

Thanks @<1523701070390366208:profile|CostlyOstrich36>
image

29 days ago
0 Hi. From Python, Is There Away To Check How Many Worker Is There In A Given Queue ?

I saw that page ... but nothing about number of worker of a queue .... or did I miss it ?

29 days ago
0 Hi All, How We Can Set The Openai Key In Clearml And How To Fetch It Run Time In Our Python Code?

I don;t think ClearML is designed to handle secrets other than git and storage ...

5 months ago
0 I Have Set

@<1523701205467926528:profile|AgitatedDove14> About why we stay on 1.12.2 : None

7 months ago
0 Hello! I'M Trying To Figure Out How To Deploy A Scheduled Pipeline. I Have A Sample Pipeline Here

normally, you should have a agent running behind a "services" queue, as part of your docker-compose. You just need to make sure that you populate the appropriate configuration on the Server (aka set the right environment variable for the docker services)
That agent will run as long as your self-hosted server is running

one year ago
0 Hello, I Am Struggling Understanding The Docs And Hope I Can Get A Quick Answer Here: Is It Possible To Utilise Multiple Gpus In Parallel For Hyperparameter Optimization For The Same Base Experiment Without The Pro Plan? I Started An Agent With Clearml-Ag

--gpus 0,1 : I believe this basically say that your code launched by the agent has access to both GPUs and that is it. Now it is up to your code to choose which GPU to use and what not and how ...

one year ago
0 Hello, All. I’Ve Recently Started Experiencing A Weird Issue With Arg Parsing Where Any String Values Are Being Repeated As Lists Of Strings When The Values Are Sent To The Clearml Server (See Attached Screenshot). I Believe This Issue Started Around The

my code looks like this :

    parser = argparse.ArgumentParser()
    parser.add_argument('-c', '--config-file', type=str, default='train_config.yaml',
                        help='train config file')
    parser.add_argument('-t', '--train-times', type=int, default=1,
                        help='train the same model several times')
    parser.add_argument('--dataset_dir', help='path to folder containing the preped dataset.', required=True)
    parser.add_argument('--backup', action='s...
one year ago
0 Hello, All. I’Ve Recently Started Experiencing A Weird Issue With Arg Parsing Where Any String Values Are Being Repeated As Lists Of Strings When The Values Are Sent To The Clearml Server (See Attached Screenshot). I Believe This Issue Started Around The

Solved @<1533620191232004096:profile|NuttyLobster9> . In my case:
I need to from clearml import Task very early in the code (like first line), before importing argparse
And not calling task.connect(parser)

one year ago
0 Hello, All. I’Ve Recently Started Experiencing A Weird Issue With Arg Parsing Where Any String Values Are Being Repeated As Lists Of Strings When The Values Are Sent To The Clearml Server (See Attached Screenshot). I Believe This Issue Started Around The

Found the issue: my bad practice for import 😛
You need to import clearml before doing argument parser. Bad way:

import argparse

def handleArgs():

    parser = argparse.ArgumentParser()
    parser.add_argument('-c', '--config-file', type=str, default='train_config.yaml',
                        help='train config file')   
    parser.add_argument('--device', type=int, default=0,
                        help='cuda device index to run the training')

    args = parser....
one year ago
0 Hello, I'M Trying To Spin Up Agents Thru Systemd Service, But It'S Failing:

please share your .service content too as there are a lot of way to "spawn" in systemd

5 months ago
Show more results compactanswers