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, 4213 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0
0 Hi I Strongly To Solve This Issue Of "Python Virtual Environment Cache Is Disabled. To Accelerate Spin-Up Time Set `Agent.Venvs_Cache.Path=~/.Clearml/Venvs-Cache`" Anyone With Similar Issue And It Was Resolved?

I think this is referring to your configuration file ~/clearml.conf follow the instructions in the message to remove it or you can just ignore it

3 years ago
0 Hey. Is It Possible To Keep Docker Container Once Job Finished/Failed? I See In Logs That "--Rm" Is Passed To "Docker Run". Is It Possible To Avoid It?

Aren't you getting logs from the docker via ClearML? I think you can build that capability fairly easily with ClearML, maybe add a PR?

3 years 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

3 years ago
3 years ago
0 Is There Any Way (Or Are There Any Plans) To Include Some View For Datasets In The Webui? One That Is Detached From The Generating Task?

I think that something like that exists, it appears to be done in the paid version called hyper-datasets. The documentation is open for all apparently 🙂

https://clear.ml/docs/latest/docs/hyperdatasets/overview

3 years ago
3 years ago
0 Had A Few Questions About The Auto Scaler:

Hi PerplexedElk26 , It seems you are correct. This capability will be added in the next version of the server.

2 years ago
0 Hi All, Can Someone Add Local Data To Clearml Dataset Using

Hi @<1635813046947418112:profile|FriendlyHedgehong10> , I think for this you need to create a child version and only add the new files to the child.

12 months ago
0 Hello Everyone! I Am New To Clearml. I Have My Prebuilt Containers And Wanted To Run Them Using

Hi @<1681836303299121152:profile|RoundElk14> , I suggest watching this - None

one year ago
0 Hi All, I Would Like To Put Table With Url Links And Image Thumnails. I Was Able To Get Url As Hyper Link However I Couldn'T Get Thumnails. Any Idea? My Code :

Hi StraightParrot3 ,

I'm not sure if thumbnails are supported inside tables. AgitatedDove14 , what do you think?

3 years ago
0 Hey, I Have A Need To Temporarily Prevent A Specific Worker, By Worker Id, From Pulling Tasks From All Queues. I Came Across The

Hi @<1709015393701466112:profile|ScatteredPeacock14> , you are correct, this feature is available only in the Scale/Enterprise plans.

I'm afraid there isn't anything besides unregistering/re-registering

one year ago
0 Hi, I Tried Download Model From Clearml.Storage (From S3 Bucket), But I Got This Error. Err: [Errno 36] File Name Too Long: Is There Any Way To Fix This? Thanks

VictoriousPenguin97 , I managed to reproduce the issue with 1.1.3 as well. It should be fixed in the next version 🙂

Meanwhile as a workaround please try using shorter file name. The file name you provided is almost 200 characters long.

Keeping it under 150 characters will still work (I made sure to test it).

4 years ago
0 Hello! I Know I Can Get A Single Reported Value Using

Hi @<1717350332247314432:profile|WittySeal70> , I think that task.get_reported_plots() is indeed what you're looking for. You might have to do some filtering there

one year ago
0 Hi, How Can I Get Commit Id For Task Using Apiclient?

Can you please add here what you're sending + what is received?

3 years ago
0 Hello Everyone, Is There An Easy Way To Clone A Pipline And Execute It With New Parameters? I Know That There Is The Possibility With Task But With Pipelines I Haven'T Found Anything In The Documentation Yet. Thank You In Advance For Your Answer.

Hi @<1774245220934750208:profile|GleamingTiger28> , you basically need to build it in your code and expose it as parameters, please see the examples for reference - None

11 months ago
0 C..

Hi @<1538330703932952576:profile|ThickSeaurchin47> , you can certainly report plotly graphs. I suggest taking a look at the Logger module
None

2 years ago
0 Hi, I Am Running Clearml Open Source Version On Eks Kubernetes And Trying To Set The Web Login Configurations As Described Here:

Hi BoredBluewhale23 ,

How did you configure the apiserver when you raised the EKS K8S cluster?

3 years ago
0 I Have The User/Pass Set Up On The

The agent prints its configuration before the execution step, I don't see agent.git_pass set anywhere in the log. Are you sure you set it up on the correct machine? This needs to be set up on the machine running the agent.

11 months ago
0 In The Pipeline Examples, Components Have The Following Note:

Hi UnevenDolphin73 , I think this is analyzed in the code

2 years ago
0 Hi Guys, Hope You'Re Doing Well. I Have A Simple Question: My Workspace Reached It'S Storage Quota. Is It Possible To Free Space? I Have Already Deleted A Lot Of Old Tasks But It Still The Same... Thanks!

Hi NastySeahorse61 ,

It looks like deleting smaller tasks didn't make much of a dent. Do you have any tasks that ran for very long or were very intensive on reporting to the server?

3 years ago
0 Hello Everyone, Is There An Easy Way To Clone A Pipline And Execute It With New Parameters? I Know That There Is The Possibility With Task But With Pipelines I Haven'T Found Anything In The Documentation Yet. Thank You In Advance For Your Answer.

Oh I see. Technically speaking the pipeline controller is a task of a special type of itself. So technically speaking you could provide the task ID of the controller and clone that. You would need to make sure that the relevant system tags are also applied so it would show up properly as a pipeline in the webUI.

In addition to that, you can also trigger it using the API also

11 months ago
0 Hey Clearml, Pipeline From Tasks: Following This Example

I think it is one of the parameters of the task. Fetch a Task and see what properties the artifact has 🙂

2 years ago
0 Hello Folks, I'M Having The Same Issue:

Hi, I know that this is a known issue and is supposed to have a hotfix coming really soon.

Regarding your question, this is what I found - None

one year ago
0 I'M A Little Confused As To How Force_Requirements_Env_Freeze Works When No Requirements File Is Supplied. Is It Supposed To Store The Full Reqs Of The Environment That Calls It?

HelplessCrocodile8 , we managed to reproduce the issue. Looks like it occurs in this specific case only on python3.9 + windows. We've logged it and it should be fixed. I'll let you know when 🙂

4 years ago
0 Do I Need To Do Anything To Get A Task To Pick Up A

Hi @<1607184400250834944:profile|MortifiedChimpanzee9> , to use a specific requirements.txt you can use Task.add_requirements
None

2 years ago
Show more results compactanswers