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 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
Another questions related to requirements.txt We use pip install with git commit. Eg: mylib @ When I do task.add_requirements("requirements.txt") I get # Pyt...
one year ago
Show more results questions
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 Hi Everyone!! Is Clearml Multi Gpu Support. I Have 2 Machines. Each Machine Have 2 A100 Gpu. Do We Have Any Option To Run Workload In These Gpu. Same Time Like Virtually. Do We Have The Support??

if you have 2 agent serving the same queue and then send 2 task to that queue, each agent should take one task
But if you queue sequentially one task then wait until that task to finish and queue the next: then it will be random which agent will take the task. Can be the same on from the previous task
Are you saying that you have 1 agent running task, 1 agent sitting idle while there is a task waiting in the queue and no one is processing it ??

one year ago
0 Hi

I tried mounting azure storage account on that path and it worked: all files end up in the cloud storage

one year ago
one year 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
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 Everyone, If I Use This Code, Where Is The File Downloaded To My Machine?

If you care about the local destination then you may want to use this None

9 months ago
0 How To Use Zscaler (Or Custom Certificate) With Clearml ? I Installed The Zscaler Certificate Into The Os System.

@<1523701087100473344:profile|SuccessfulKoala55> I managed to make this working by:
concat the existing OS ca bundle and zscaler certificate. And set REQUESTS_CA_BUNDLE to that bundle file

11 months 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 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 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
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
0 Hello, I'M Trying To Use The Agent To Orchestrate Tasks - Our Install Is Quite Complicated And I'Ve Wrapped It All Up With The Code In A Docker Container; Is There A Way To Get The Agent To Just Run A Command In The Container Rather Than Try To Build/Inst

in my case, I set eveything inside the container, including the agent and not using docker mode altogether.
When my container start, it start the agent inside it in "normal" mode

one year ago
one year ago
0 I Had A Good Look At All The Introduction Video On Youtube And Had Some Questions. Context: If We Are Going To Deploy And Maintain Clearml Servers Our Self In Azure:

For #2: it's a pull rather than a push system: you need to have a script that do pulling at regular interval and need to keep track what new and what not?

one year ago
0 Hi! I'M A Devops Engineer. My Company Is Self-Hosting Clearml On Kubernetes. I'M A Clearml Newbie, So Pardon My Ignorance. I'M A Little Confused By What Clearml Artifacts (See Screenshot Below) And Custom Models Are. Are They One And The Same? Where Are

Artifact can be anything, that you can use clearml SDK to upload to storage. Which storage is used is defined by your clearml.conf (with its credentials) ClearML web and api server do not store those files

Model is a special artifact: None
Example you have the lineage feature where if you train model B using model A as starting point (aka pre-trained) , and model C from model B, ... The lineage will track modelC was built on...

6 months 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 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
Show more results compactanswers