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

Reputation

0
0 General Infrastructure Question: My Company Isn'T Using Aws For Training, We Have All Our Gpu'S Inhouse In Our Own Servers, We Have A Problem Where We Want On One Hand To Give All The Gpus For The Clearml-Agent (Ie' That They Will Be Available For Tasks)

If you run an agent in docker mode ( --docker ) the agent will run a docker run command and the task will be executed inside a container. In that scenario, I think, if you kill the daemon then the docker will stay up and finish the job (i think, haven't tested)

2 years ago
0 Hello! I'Ve Been Trying To Use Clearml For The First Time, But I Cannot Seem To Run The First Serving Model. First, I Run The Following In Powershell: >>> Clearml-Serving Create --Name "June Test" Log: Clearml-Serving - Cli For Launching Clearml Serving

So, I went to the link

in order to use it like Postman. Testing the API without using Python. It was ChatGPT that directed me there, and it is kind of a nice way to validate the API

I would ignore anything that ChatGPT says about ClearML (and most other things too)

5 months ago
0 Hey Everyone, Given A Query Object, I See That I Can Access Many Things Such As Dataset_Name, Id Etc. Howeve,R I Want To Retrieve Not Only The Dataset_Name But The Dataset_Project Its Saved Under. How Can I Access This Information?

Hi @<1797075640948625408:profile|MotionlessSeagull29> , you can get it with the following:

from clearml import Dataset

ds = Dataset.get(dataset_id="<SOME_ID>")

print(ds.project)

You can always use

dir(<PYTHON_OBJECT>)

to see it's different attributes/methods

9 months ago
0 Hello Gals And Guys! Happy New Year!

The pipelines look really sweet!

3 years ago
0 Hi To All! There Are Limitations On Using The New Github Pat Fine-Grained Features On Clearml?

Hi HarebrainedBaldeagle11 , not that I know of. Did you encounter any issues?

2 years ago
0 Hi There, We Have A Clearml Server And I Have Spun Up An Agent Using A Docker Image (As We Have Private Packages On Aws Codeartifact That Need Installing). I Have Created The

From the log it looks like there is no ssh installed on the image:

cloning: git@bitbucket.org:pendulum-systems-inc/repo.git
ssh -oBatchMode=yes: 1: ssh: not found
fatal: Could not read from remote repository.
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 🙂

3 years ago
0 Hello Clearml Ppl

FreshKangaroo33 , I'll play with it a bit to see what works 🙂

3 years ago
0 Hello Clearml Ppl

FreshKangaroo33 , what do you mean by syntax examples?
I think this should give you some context on usage 🙂
https://github.com/allegroai/clearml/blob/master/examples/reporting/hyper_parameters.py

3 years ago
0 Hey While Trying To Upload A (~14 Gb) Dataset, We Get The Following Error:

Can you check the logs of the apiserver? Maybe something caused an internal error

2 years ago
0 Hi, Were Running Clearml Webserver (Version On The Ui Says: 1.1.1-135 • 1.1.1 • 2.14) On A Dedicated Ubuntu 20.04 Machine With 15G Ram And 8 Cores. Lately We Experience Slowdowns And Sometimes Even Stretches Of 0.5-1 Hour In Which The Webui Does Not Resp

Hi NervousFrog58 , versions 1.1.1 seem to be quite old. I would suggest upgrading your server. Please note that since then there have been a couple of DB migrations, so make sure to follow all steps 🙂

3 years ago
0 Hello. Can I Know How To Download The

I am not familiar with that. In the SDK you have the StorageManager to help you with downloading files.
None

2 years ago
0 Hi! Any Idea Why Clearml Fails To Detect Iteration Reporting?

GrievingTurkey78 , please try task.init( auto_resource_monitoring=False, ... )

4 years ago
0 Hi, I'Ve Multiple Tasks Setup In A Complex Pipeline. How Can I;

SubstantialElk6 ,

We were trying with 'from task' at the moment. But the question apply to all methods.

You can specify this using add_function_step(..., execution_queue="<QUEUE>")

Make certain tasks in the pipeline run in the same container session, instead of spawning new container sessions? (To improve efficiency)

I'm not sure this is possible currently. This could a be nice feature request. Maybe open a github request?

3 years ago
0 I Am Using Clearml Pro And Pretty Regularly I Will Restart An Experiment And Nothing Will Get Logged To Clearml. It Shows The Experiment Running (For Days) And It'S Running Fine On The Pc But No Scalers Or Debug Samples Are Shown. How Do We Troubleshoot T

@<1719524641879363584:profile|ThankfulClams64> , can you provide a small code snippet that reproduces this behaviour? Can you also test with the latest version of clearml ?

one year ago
0 Hi! I Am Implementing A Cleanup Service. After Completing Several Training Tasks, I Am Only Interested In The Trained Models And Some Artifacts Resulting From The Training Process (Such As Scalers, Etc.). Therefore, I Would Like To Remove All The Tasks Th

GiganticTurtle0 Hi 🙂

You could try saving them as OutputModel ( https://clear.ml/docs/latest/docs/references/sdk/model_outputmodel ) thus saving them 'outside' of the task object. Regarding if it's considered a good practice or not maybe AnxiousSeal95 can add up on that.

4 years ago
0 Hi Guys, I Have Been Pondering How Does Clearml Generate The "Installed Packages" List. I Triggered My Training Through Machine A (With Some Python Packages) And The Actual Training Is Done In A Docker Container (With Both Global Packages + Packages Insta

OddShrimp85 Hi 🙂

I think ClearML detects the packages that were in use during the script's run. Regarding the global packages, that's what the docker image is for, so it all comes pre-installed

4 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 Is It Possible To Share Experiments From Self-Hosted Clearml Server?

Hi 🙂

Are you asking if you can share experiments between a self hosted server and http://app.clear.ml ?

3 years ago
0 Hi, How Is The Priority Of The Configuration Like? Which One Takes Precedence? For Example, Output_Uri

HI SubstantialElk6 ,

If I'm not mistaken the order is as goes:
output_uri (Both code and CLI) Configurations vault default_output_uri in clearml.conf

3 years ago
Show more results compactanswers