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
37 Questions, 270 Answers
  Active since 05 June 2023
  Last activity 19 days ago

Reputation

0

Badges 1

100 × Eureka!
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 Hi, When Using Yolo In A Docker Based Clearml Agent, I Get The Error Below. How Do I Need To Setup Clearml Agent To Have Access To Cv2?

Sounds like your docker image is missing some package. This is un-related to clearml.
AS for what package is missing, see here

23 days ago
0 Hi Clearml Team, Is There A Way To Overwrite Working_Dir When Creating Task From Task.Init() Workflow? The Underlying Function I Am Triggering Relying On The Assumption On Running From Certain Directory.

What exactly are you trying to achieve ?

Let assume that you have Task.init() in run.py
And run.py is inside /foo/bar/

If you run :

cd /foo
python bar/run.py

Then the Task will have working folder /foo

If you run:

cd /foo/bar
python run.py

Then your task will have the working folder /foo/bar

one month ago
0 Hi Clearml Team, Is There A Way To Overwrite Working_Dir When Creating Task From Task.Init() Workflow? The Underlying Function I Am Triggering Relying On The Assumption On Running From Certain Directory.

the underlying code has this assumption when writing it

That means that you want to make things work not in a standard Python way ... In which case you need to do "non-standard" things to make it work.
You can do this for example in the beginning of your run.py

import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

In this way, you not relying on a non-standard feature to be implemented by your tool like pycharm or `cle...

one month ago
0 I Have Set

We need to focus first on Why is it taking minutes to reach Using env.
In our case, we have a container that have all packages installed straight in the system, no venv in the container. Thus we don't use CLEARML_AGENT_SKIP_PIP_VENV_INSTALL
But then when a task is pulled, I can see all the steps like git clone, a bunch of Requirement already satisfied .... There may be some odd package that need to be installed because one of our DS is experimenting ... But all that we can see what is...

11 months ago
0 Hi! I Have Noticed That Clearml-Elastic Container Consumes 32.82Gib Memory. This Seems

I think ES use a greedy strategy where it allocate first then use it from there ...

27 days ago
0 Another Quick Question About Fileservers And Clearml-Agent: Clearml-Agent Seems To Ignore The Output Destination Set In The Task Config

@<1523701868901961728:profile|ReassuredTiger98> I found that you an set the file_server in your local clearml.conf to your own cloud storage. In our case, we use something like this in our clearml.conf:

api {
   file_server: "azure://<account>..../container"
}

All non artifact model are then store in our azure storage. In our self-hosted clearml setup, we don't even have a file server running alltogether

one year ago
0 Another Quick Question About Fileservers And Clearml-Agent: Clearml-Agent Seems To Ignore The Output Destination Set In The Task Config

If you are using multi storage place, I don't see any other choice than putting multi credential in the conf file ... Free or Paid Clearml Server ...

one year ago
0 Another Quick Question About Fileservers And Clearml-Agent: Clearml-Agent Seems To Ignore The Output Destination Set In The Task Config

but afaik this only works locally and not if you run your task on a clearml-agent!

Isn;t the agent using the same clearml.conf ?
We have our agent running task and uploading everything to Cloud. As I said, we don;t even have file server running

one year ago
0 Another Quick Question About Fileservers And Clearml-Agent: Clearml-Agent Seems To Ignore The Output Destination Set In The Task Config

no. I set apo.file_server to the None in Both the remote agent clearml.conf and my local clearml.conf
In which case, both case where the code is ran from local or remote, will store metrics to cloud storage

one year ago
0 Another Quick Question About Fileservers And Clearml-Agent: Clearml-Agent Seems To Ignore The Output Destination Set In The Task Config

right, in which case you want to dynamically change with your code, not with the config file. This is where the Logger.set_default_output_upload come in

one year ago
0 Hi Everyone! I'Ve Been Using Clearml For A While And I Love It, But I Recently Noticed A Strange Issue. From The "Debug Samples" Tab, Where I Can See Some Training Samples From My Dataset, When I Click On Some Thumbnails The Image I Can See Does Not Match

Just a +1 here. When we use the same name for 3 differents image, the thumbnail show 3 different images, but when clicking on any of them, only one is displayed. No way to display the others

10 months 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

4 months 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 ?

4 months 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

4 months ago
0 Within A Clearml Task, Is It Possible To Checkout Another Task Code ? Context: I Have A Bit Of A Special Use-Case: We Train Our Model Using Clearml. Our Code Prep The Data: Download Images (We Are Not Using Clearml Dataset) And Bundle Labels Into A Dataf

Thanks @<1523701087100473344:profile|SuccessfulKoala55> I missed that one.
I have been playing with exporting task, modifying the "diff" part and importing back as new task. Seems to work as desired. But set_script seems cleaner.

Love how flexible is ClearML !!!

2 months ago
0 Hi. I Want To Run Clearml-Agent Inside A Docker Container. With The Default Image In My Clearml.Conf File, It Is "Image: "Nvidia/Cuda:11.0.3-Cudnn8-Runtime-Ubuntu20.04", How Do I Run The Agent In Docker Mode And See The Worker Running In The Clearml Ui

you can either:

  • Build an image from your docker file and when running the task/experiment, tell it to use that docker image
  • If the steps to install dependencies required for your repository is not too complicate, then you can use agent.extra_docker_shell_script in the clearml.conf in order to install all the dependencies inside the docker container launched by clearml in docker mode.
    image
one month ago
0 Hi There, I'M Looking Into Config With Env Vars. Is There An Sdk/Client Equivalent To The Server'S Dynamic Env Vars Definition?

meanwhile, the SDK support CLEARML_CONFIG_FILE=/path
Not sure what is your use case, but if you want it to be dynamic, you can on-the-fly create the config file to /tmp for example and point to that in your code with

import os
os.environ['CLEARML_CONFIG_FILE']="/path"

import clearml
one month ago
0 Hi There, I'M Looking Into Config With Env Vars. Is There An Sdk/Client Equivalent To The Server'S Dynamic Env Vars Definition?

note: you will need to set the env var very early, before the first import clearml in your code

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

9 months ago
0 I Have Set

normally when new package need to be install, it shows up in the Console tab

11 months ago
Show more results compactanswers