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
40 Questions, 298 Answers
  Active since 05 June 2023
  Last activity 2 months ago

Reputation

0

Badges 1

113 × Eureka!
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
Question about Pipeline : my setup is as follow: - Step1: train_foo.py (which import config from other .py) => generate a model.pt - Step2: gen_bar.py + mode...
one year ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Experiment Environment Containers Tutorial : I create a docker image with: $ clearml-agent build --id d8162747eb2d4453bba9778851d1e120 --docker --target new_...
2 years ago
0 Votes
2 Answers
778 Views
0 Votes 2 Answers 778 Views
10 months ago
0 Votes
2 Answers
696 Views
0 Votes 2 Answers 696 Views
Given a Task object, how do I retrieve the GPU type ? I can see it from the webUI but it would be great if I can get it from the python sdk
7 months ago
0 Votes
6 Answers
4K Views
0 Votes 6 Answers 4K Views
I want to run clearml sdk to create task (without running it) and upload artifact in a container. I have code to pull clearml API key from Azure Keyvault and...
3 months ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Security issue: I have deployed a clearml server on prem with docker. I set the user credential in /opt/clearml/config/apiserver.conf That work fine: you nee...
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
2 years ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
We have deployed our own ClearML server in Azure. We have 2 separate address for the api and web server. Both serving at port 443 In the local PC config file...
2 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
2 years ago
0 Votes
10 Answers
3K Views
0 Votes 10 Answers 3K Views
How to tell clearML server to use cloud storage (Azure)? I have a clearML server deployed with docker-compose. As per instruction here , I added the file /op...
2 years ago
Show more results questions
0 Hello, We Have Noticed That Debug Images Takes Way Too Long To Load 6 To 8 Seconds When Requesting Events.Debug_Images We Also Notice That The Returned Object Is Quite Heavy, About 2-3 Mb, I Think It Contains A Lot Of Unnecessary Info We Also Have 20 Mill

Not a solution, but just curious: why would you need that many "debug" images ?
Those are images automatically generated by your training code that ClearML automatically upload them. May be disable auto upload image during Task Init ?

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

8 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

12 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

@<1523703436166565888:profile|DeterminedCrab71> Thansk for the suggestion. But no effect.
We already have client_max_body_size 0; in the server section
I tried to set both http and server section 100M but nothing changes.

Do you think the gzip be related ?

4 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

I did.
I am now redeploying to new container to be sure.

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

12 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

@<1523703436166565888:profile|DeterminedCrab71> Found the solution:
We needed proxy_set_header Connection ""; in the location /api section. Putting it above in the server section had no effect

4 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

will send the nginx -T results once the container is deployed

4 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

yes, I did try that exactly: all curl request succeed

4 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

Deployed fresh new and ran nginx -T in the container:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
# configuration file /etc/nginx/nginx.conf:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
error_log stderr notice;

events {
        worker_connections 768;
        # multi_accept on;
}

http {
        client_max_body_size 100M;
        rewrite_l...
4 months ago
0 We Have This Issue With Our Oss Deployment: One Azure Container App For

and I tried the curl against the web url: and it fails 8/10

4 months 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
8 months ago
0 Hi Everyone! I Was Wondering, What Would Be The Best Way To Install A Custom Local Python Package On A Remote Worker? The Remote Worker Has Access To The Repository, But I Am Struggling To Figure Out How I Can Let The Remote Worker Install This Package As

I confirm that clearml handle properly -e installed package. That is very nice because package get updated automatically without touch requirements.txt 😄
Your clearml worker need to be setup in order to have access to the git repo.

6 months ago
0 Hi Everyone, I Am Running A Pipeline Using The Autoscaler, I Am Able To Spin Up The Vm Instance Using The Autoscaler And The Docker Is Also Getting Installed In There Perfectly. The Issue I Am Facing Is That During Executing A Pipeline Task While Cloning

this looks like the agent running inside your docker did not have any username/password to do git clone. so the default behavior is to wait for keyboard input: which look like hanging ....

2 years ago
0 I Have Set

I know that git clone and pip verify all installed is normal. But for some reason in Michael screenshot, I don't see those steps ...

one year ago
0 Hi, Is There A Way To Fully Reproduce The Experiment Environment Locally Without Executing It ? Clearml Agent Do Setup A Venv And Install All The Package, Install Diff, .... Then Execute The Training Code. Is It Possible To Tell Clearlml-Agent To Stop Th

@<1523701087100473344:profile|SuccessfulKoala55> Yes, I am aware of that one. It build docker container ... I wanted to build without docker. Like when clearml-agent run in non-docker mode, it is already building the running env inside it caching folder structure. I was wondering if there was a way to stop that process just before it execute the task .py

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

Is it because Azure is "whitelisted" in our network ? Thus need a different certificate ?? And how do I provide 2 differents certificate ? Is bundling them simple as a concat of 2 pem file ?

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?

Looks like your issue is not that ClearML is not tracking your changes but more about your Configuration is overwrriten.
This often happen to me. The way I debug this is put a lot of print statement along the code to track when the Configuration is overwriten and narrow down why. print statement will show up in the Console tab.

one year ago
0 Hi Everyone. Not Quite Sure How To Describe My Situation. Im Doing A Bsc In Ai And Ml In Switzerland. Work Wise We Are Something Like A Msp That Provides Remote Desktop Services (Rds) To Small Customers. My Boss Just Bought 5X Rtx 6000 Pro And Tasked Me T

You can use single PC and have multi agent running in the same time, each assigned one or multi GPU.
You likely to hit CPU bottleneck, depending on how much augmentation you are applying when training ....

4 months ago
0 I Have Weird Issue With Clearml Agent: When Queue A Job For A Second Time On The Same Agent, It Get

I will try it. But it's a bit random when this happen so ... We will see

one year ago
0 Can Anyone Recommend A Good Workflow For

just saw that repo: who are coder ? That not the vscode developer team is it ?

2 years ago
Show more results compactanswers