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 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
0 I Just Saw The New Release Of The Agent 1.8.1 :

I am wondering, should it be True be default ???

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

2 years ago
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?

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

one year ago
0 I Have Set

I think a proper screenshot of the full log with some information redacted is the way to go. Otherwise we are just guessing in the dark

one year ago
2 years 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 !!!

9 months ago
Show more results compactanswers