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 27 days ago

Reputation

0

Badges 1

92 × Eureka!
0 Votes
5 Answers
545 Views
0 Votes 5 Answers 545 Views
I have weird issue with clearml agent: when queue a job for a second time on the same agent, it get Executing task id [43cc0c9e1f794f53a148bde3fff03cc9]: rep...
8 months ago
Show more results questions
0 I Am Trying To Run One Agent On My Local Machine And One Agent On A Vm

with ssh public key, if from a terminal, I can do git clone, then so do the clearml agent, as it run on behalf of an local user. That apply to both local and VM

one year ago
one year ago
0 Another Questions Related To

but then it still missing a bunch of library in the Taks (that succeed) > Execution > INSTALLED PACKAGES
So when I do a clone of that task, and try to run the clone, the task fail because it is missing python package 😞

one year ago
0 I Have A Problem Where My Clearml Doesn'T Pick Up From Uncommitted Changes. It Used To Work For A Long Time, But Now It Is Not Working. What Am I Missing?

Are the uncommit changes in un-tracked files ?
In other words: clearml will only save uncommited changes from files that are tracked by your local git repo

one month 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, 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

what about having 2 agents, one on each GPU, on the same machine, serving the same queue ? So that when you enqueue, which ever agent (thus GPU) available will take the new task

one year ago
0 Another Questions Related To

Ok. Found the solution.
The importance is to use this:

Task.add_requirements("requirements.txt")
task = Task.init(project_name='hieutest', task_name='foo',reuse_last_task_id=False)

And not:

task = Task.init(project_name='hieutest', task_name='foo',reuse_last_task_id=False)
task.add_requirements("requirements.txt")
one year ago
0 Another Questions Related To

that format is correct as I can run pip install -r requirements.txt
using the exact same file

one year ago
0 Another Questions Related To

and in the train.py , I have task.add_requirements("requirements.txt")

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

because when I was running both agents on my local machine everything was working perfectly fine

This is probably you (or someone) had set up ssh public key with your git repo sometime in the past

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

i need to do a git clone

You need to do it to test if it works. Clearml-agent will run it itself when it take in a task

one year ago
one year 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 I Am Trying To Run One Agent On My Local Machine And One Agent On A Vm

not sure how that work with Docker and machine that is not set up with ssh public key ... We will go to that path sometime in the future so I am quite interested too, on how people do it without ssh public key

one year ago
0 Also From The Python Sdk, Is There A Way To Specify The Clearml.Conf File To Use ? Like The Equivalent Of

I understand for cleaml-agent
What I mean is that I have 2 self deployed server. I want to switch between the 2 config when running the code locally, not inside the agent

one year ago
0 Experiment Environment Containers Tutorial : I Create A Docker Image With:

even it's just a local image ? You need a docker repository even if it will only be local PC ?

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

Do I need not make changes into clearml.conf so that it doesn't ask for my credentials or is there another way around

You have 2 options:

  • set credential inside cleaml.conf : i am not familiar with this and never test it.
  • or setup password less ssh with public key None
one year ago
0 I Am Trying To Run One Agent On My Local Machine And One Agent On A Vm

you should be able to use as many agent as you want.
On the same or different queue

one year ago
0 Hi Everyone! Small Question - Is It Possible To Associate An Agent To A Specific Cpu?

I don't think agent are aware of each other. Which mean that you can have as many agent as you want and depending on your task usage, they will be fighting for CPU and GPU usage ...

one year ago
0 Hi, I Am Using

Looks like it's because I did not do the mmpretrain way with dict config file ...

8 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 Another Questions Related To

is task.add_requirements("requirements.txt") redundant ?
Is ClearML always look for a requirements.txt in the repo root ?

one year ago
0 I Have A Problem Where My Clearml Doesn'T Pick Up From Uncommitted Changes. It Used To Work For A Long Time, But Now It Is Not Working. What Am I Missing?

I can only guess with little information here. You better try to debug with print statement. Is this happening in submodule uncommited changes ?

one month ago
0 Hello Admin, I Am Unable To Create Pipeline Using Cpu/Gpu/Tpu. What Is The Issue?

you will need to provide more context than that if you don't want the answer: Have you try to turn it off and back on again ?

2 months ago
0 Hi All

In the web UI, in the queue/worker tab, you should see a service queue and a worker available in that queue. Otherwise the service agent is not running. Refer to John c above

one year ago
Show more results compactanswers