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
CostlyOstrich36
Moderator
0 Questions, 3782 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Help Please. I Have My Clearml Server Running In A Docker Container. Now, I Am Training My Ml Models In Another Docker Container. I Want To Track These Models With My Clearml Server Located In The First Container. What Configuration Do I Need To Do?

Hi @<1673501397007470592:profile|RelievedDuck3> , you simply need to integrate clearml into your code.

from clearml import Task
task = Task.init(...)

More info here:
None

8 months ago
0 Hello Everyone! Has Anyone Ever Used Grafana In Clearml-Serving To Configure Data Drift Alerts?

Hi @<1673501397007470592:profile|RelievedDuck3> , there is some discussion of it in this video None

6 months ago
0 Hi Everyone! I Would Like To Test Serving A Model Via An Endpoint Using Clearml-Serving. Do I Necessarily Need To Have Kubernetes On My Machine?

Hi @<1673501397007470592:profile|RelievedDuck3> , no you don't. The basics can be run with a docker compose 🙂

9 months ago
0 Hi, My Server Is On Version 1.11, And Yesterday A Few Of My Runs (With Agent 1.5.1) Failed On

Hi @<1639799308809146368:profile|TritePigeon86> , I think the 1.16 refers to the version of the SDK. I'd suggest upgrading your server regardless 🙂

6 months ago
0 Hi, My Server Is On Version 1.11, And Yesterday A Few Of My Runs (With Agent 1.5.1) Failed On

I meant that maybe you ran it with a newer version of the SDK

6 months ago
0 I'M Trying To Read The Runtimes Of Tasks After The Pipeline Finished, For Analytics. Currently, I'M Doing Something Like This:

I'd suggest using the API directly, fetch a task and compare it's start to end time.

6 months ago
0 Hi, I'M Looking Into Deploying Clearml With Aws Opensearch As Managed Elasticsearch Backend. I'M However Not Finding Any Documentation On Whether Clearml Supports The Aws Signed Api Requested That Opensearch Requires. Has Anyone Tried This Before?

Hi @<1547028121666981888:profile|AdventurousOwl31> , from my understanding this is technically supported but heavily unadvised due to differences between the two

one year ago
0 Hi! Quick Question. Can I Use The Ui To Search For An Artifact By Id?

Hi 🙂
When viewing the experiments tables you have a tab called 'models'. If the artifact was saved as a model, then you can find it there 🙂

3 years ago
0 Hello Everyone, I Am A New User For Clearml, I Have One Question: I Created The Dataset, And Upload Files Successfully By Class

Hi, ZippyWalrus56 , can you add a full print of your console log?

Also if possible provide a code snippet, that can help understand the problem 🙂

2 years ago
0 Hi Everyone! Before I Ask A Question - You Develop A Very Cool Tool. Thanks! I Tried To Write Simple Pipeline Using The Pipelinedecorator. But Found That The Clearml Modifies The Code, For Example It Replaces

Hi @<1523703107031142400:profile|FlatOctopus65> , can you please elaborate on what exactly happens and when? Do you have a snippet to play with ?

2 years ago
0 How Do I Check My User Role On Clearml? Can We Restrict To Create User On Invite Only? Clearml Webpage Just Allow Anyone Who Can Open Web Dashboard To Create A New User. Is There Any Config That Allows Only User Creation On Invite Only Basis? Because Of

Hi DrabCockroach54 , in the open source version there are no roles. You can set up users & passwords using this:
https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_config/#web-login-authentication

I am not sure there is a simple way to delete users - I think you would need to edit MongoDB manually, which I would not recommend

2 years ago
0 Hi, I Am Trying To Pull Api Data From /Tasks.Get_All Endpoint

When in table view (rows) there is a small icon next to the 'Started' column. There you can configure time periods you'd like to view 🙂

2 years ago
0 Should Calling

TimelyPenguin76 , MammothGoat53 , I think you shouldn't call Task.init() more than once inside a script

2 years ago
0 I'M Running

Can you try and specify the exact absolute path? I think that might be the problem.

3 years ago
0 Hi, Part Of The Ml Pipeline I'M Working On Temporarily Stores Intermediate Features Using

OK, there appears to be a github issue relating this:
https://github.com/allegroai/clearml/issues/388
I was right regarding encountering this before. People have asked for this feature and I think it appears to be a priority to add as a feature.

You can circumvent auto logging with the following:
task = Task.init(..., auto_connect_frameworks={'pytorch': False})However you will need to log other models manually now. More information is in the github issue 🙂

2 years ago
0 Hi, Part Of The Ml Pipeline I'M Working On Temporarily Stores Intermediate Features Using

I think I've encountered something related to this. Let me take a look at the docs

2 years ago
0 Hi Everyone, I Am New Here To Clearml And I Was Wondering How Can I Make A Line Plot Similar To Wandb Where Several Runs Can Be Aggregated Together (With Error Bands) Based Upon Some Sort Of Criteria?

Hi @<1699593312320622592:profile|TeenyOtter72> , I think what you're looking for is the comparison. You can checkbox multiple experiments and then you will have a bar at the bottom with an option to compare. Let me know if this is what you were looking for

7 months ago
0 Hi. I Am Trying To Install Clearml-Agent On The Remote Server On Aws. I Successfully Installed It To The Home Directory: Successfully Installed Attrs-20.3.0 Clearml-Agent-1.2.3 Distlib-0.3.4 Filelock-3.4.1 Furl-2.1.3 Idna-2.10 Orderedmultidict-1.0.1 Path

Basically the Agent automates the docker run command with everything that you need (this can become rather complex). You can see this in the third line of the console log:
` Executing: ['docker', 'run', '-t', '--gpus', 'all', '-l', 'clearml-worker-id=ip-172-31-28-179:0', '-l', 'clearml-parent-worker-id=ip-172-31-28-179:0', '-e', 'CLEARML_WORKER_ID=ip-172-31-28-179:0', '-e', 'CLEARML_DOCKER_IMAGE=nvidia/cuda:10.2-cudnn7-runtime-ubuntu18.04', '-e', 'CLEARML_TASK_ID=cdbfa9cda5ab4d86b012a87...

2 years ago
0 Hi. I Am Trying To Install Clearml-Agent On The Remote Server On Aws. I Successfully Installed It To The Home Directory: Successfully Installed Attrs-20.3.0 Clearml-Agent-1.2.3 Distlib-0.3.4 Filelock-3.4.1 Furl-2.1.3 Idna-2.10 Orderedmultidict-1.0.1 Path

I can think of two solutions:
Fix local python environments and begin using virtual environments ( https://github.com/pyenv/pyenv for example) Use the agent in --docker mode. You won't need to worry about python versions but you will need to install Docker on that machine.

2 years ago
Show more results compactanswers