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, 3697 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Hi There, I Am Running A Clearml-Agent And Now Trying To Run A Pipeline On A Schedule. When I Try Run The Schedule Using The Queue Assigned To The Worker I'Ve Got Running, I Get The Following Error About

Hi @<1654294828365647872:profile|GorgeousShrimp11> , it appears the issue is due to running with different python versions. It looks like the python you're running the agent on, doesn't have virtualenv

10 months ago
0 Hi. I'D Like To Try The Gcp Autoscaler.

I noticed that the base docker image does not appear in the autoscaler task'

configuration_object

It should appear in the General section

2 years ago
one year ago
0 Hello Everyone! Is There A Way To Delete Clearml Task Tags Via Python Sdk? It Seems That I Can Only Remove Tags Through The Browser Interface

Hi @<1562610703553007616:profile|CloudyCat50> , you can use Task.set_tags() to 're-set' tags and omit the tag you want removed.

one year ago
0 Hi All! When I Try To Run Tasks For A Agent On Machine Without Gpu This Error Occurs:

EnviousPanda91 , in the Task object what do you see under 'Execution' tab in the 'Container' section?

2 years ago
0 Hi, Is This A Well Known Issue, That Running A Task In A Virtual Environment, Messes Up The Reproducibility Feature ?

Hi @<1546303254386708480:profile|DisgustedBear75> , what do you mean?

You get different results or your experiment fails?

Running in venv mode can be more prone to failure if you're running between different operating systems & python versions.

The default behavior of ClearML when running locally is to detect the packages used in the code execution (You can also provide specific packages manually or override auto detection entirely) and log them in the backend.

When a worker in a virtual...

one year ago
0 Hi There All! Is There A Way To Set Empty Requirements When Creating A Remote Task? I Have Tried To Set Packages To None Or Empty Array, But It Doesn’T Work, Which Is Corroborated By The Documentation Of That Function

Hi @<1659005876989595648:profile|ExcitedMouse44> , you can simply configure the agent not to install anything and just use the existing environment 🙂

The relevant env variables for this are: CLEARML_AGENT_SKIP_PIP_VENV_INSTALL
CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL
None

10 months ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

Please open developer tools (F12) and see if you're getting any console errors when loading a 'stuck' experiment

one year ago
0 Hello Clearml Ppl

FreshKangaroo33 ,

On the top right of the experiments view you have a cog wheel, if you click on it, it will give you an option to add hyper parameters to the table. I think from the API calls from there you can figure something out 🙂

2 years ago
0 Hi, How Can I Get Commit Id For Task Using Apiclient?

Please try the following:
` In [1]: from clearml.backend_api.session.client import APIClient

In [2]: client = APIClient()

In [3]: tasks = client.tasks.get_all()

In [4]: tasks[0]
Out[4]: <Task: id=0a27ca578723479a9d146358f6ad3abe, name="2D plots reporting">

In [5]: tasks[0].data
Out[5]:
<tasks.Task: {
"id": "0a27ca578723479a9d146358f6ad3abe",
"name": "2D plots reporting",
"user": "JohnC",
"company": "",
"type": "training",
"status": "published",
"comment": "Aut...

2 years ago
0 Hi Community, We Are Having An Issue Connecting Our

Do you have a custom certificate for SSL by chance? If this is the case please see the following:
https://github.com/allegroai/clearml/issues/7
The solution would be changing the following to false:
https://github.com/allegroai/clearml/blob/9624f2c715df933ff17ed5ae9bf3c0a0b5fd5a0e/docs/clearml.conf#L16

2 years ago
0 Hi, I Am A Newbie Here And I Am Just Struggling With Some Chanllenges When I Self-Host The Clearml Server ( In Linux - Ubuntu 20.04 )

How did you verify that the files are still there? Not just you can see the folder name itself but are there contents? If you use the same links through the web UI, can you still download files even when task/dataset is deleted?

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

DrabCockroach54 , you can set it all up. I suggest you open developer tools (F12) and see how it is done in the UI. You can then implement this in code.

For example to filter tasks that started 10 minutes ago is something you can view via the UI

2 years ago
0 I'M Trying To Import Offline Tasks, But Before I Do So I Want To Make Sure I'M Not Creating Duplicates By Accessing The Task_Name And Project_Name I'M Going To Sync. I'M Trying To Run

Can you please elaborate what AWS Lambda is and what your use case is with it? When running in a regular state does this error occur?

2 years ago
0 If You Rely On Task To Automatically Upload Artifacts, It Seems You Cannot Retrieve Them Using

TrickyRaccoon92 , after looking in the documentation a bit more it seems I am a bit wrong.

If you look here: https://clear.ml/docs/latest/docs/references/sdk/task/#upload_artifact

there is a parameter called wait_on_upload which is set by default to false. If you set it to 'True' then you should get the artifact object as well. This is due to the artifacts upload being asynchronous and I'm guessing the artifact didn't finish uploading by the time you called it.

3 years ago
0 Hi All, How Can I Have A Global Variable Used In A Pipeline Step? I Have To Define Them In Each Pipeline Step, Otherwise They Are Not Included In The Pipeline Step

Hi @<1523701066867150848:profile|JitteryCoyote63> , you mean a global "env" variable that can be passed along the pipeline?

7 months ago
0 Hi All! When I Try To Run Tasks For A Agent On Machine Without Gpu This Error Occurs:

Hi EnviousPanda91 , are you running in docer mode? It looks like you're trying to use a CUDA image without a GPU on it

2 years ago
2 years ago
0 Hi All. What Is The Most Straightforward Way To Download All Experiment-Related Data (Configs, Scalars, Debug Samples Etc.) For One Experiment From Clearml Server (Self-Hosted)? I Want To Backup Some Chosen Experiments And Also Poke Around The Experimenta

Hi @<1529633475710160896:profile|ThickChicken87> , I would suggest opening developer tools (F12) and observing what api calls go out when going over the experiment object. This way you can replicate the api calls to pull all the relevant data. I'd suggest reading more here - None

one year ago
0 Hi, All. How Do I Add Accuracy And Loss Metrics For Tracking In Clearml For Yolo8? And Model Registry After Each Epoch?

Hi @<1590514572492541952:profile|ColossalPelican54> , you can use the Logger module to manually report metrics - None

one year ago
0 Hello, I'D Like To Ask Questions About Taskscheduler

ScaryBluewhale66 ,
If you want to re-run - you need the agent It's still a Task object so you can just use Task.close() I'm not sure if something exists at the moment but you could write it faily easily in code

2 years ago
Show more results compactanswers