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

Reputation

0
0 Hey Everyone Is There A Way To Have Metrics Upload To Default_Output_Uri Instead Of Fileserver? We'Re Self Hosting Clearml On Kubernetes And We'D Like To Completely Get Rid Of Fileserver And Have All Uploads (Metrics, Models, Artifacts Etc.) In One Place

Hi @<1845635622748819456:profile|PetiteBat98> , metrics/scalars/console logs are not stored on the files server. They are all stored in Elastic/Mongo. Files server is not required to use. default_output_uri will point all artifacts to your Azure blob

4 months ago
0 Hi, Is The

Hi @<1794901326925139968:profile|SpicyShark55> ,you have it as part of the open source as code - None

9 months ago
0 Hello

RotundHedgehog76 ,

What do you mean regarding language? If I'm not mistaken ClearML should include Optuna args as well.

Also, what do you mean by commit hash? ClearML logs the commit itself but this can be changed by editing

3 years ago
2 years ago
0 Hello ! When Running

Inside the docker, that is

3 years ago
0 Hello, May I Ask If There Is A Means To Export Dataset In One Clearml Setup And Import To Another Clearml Setup?

I think if you copy all the data from original server and stick it in the new server it should transfer all data. Otherwise I think you would need to extract that through the API or copy mongo documents

2 years ago
one year ago
0 Hi All, I'M Running Dl Experiments On Top Of Mmdetection. The Experiments Are Deployed Remotely On A Dedicated Ec2 Instance Through

When the agent starts running a task it will print out where the logs are being saved

3 years ago
0 Also, Any Advice On Using Best Practice Of Using Task.Create() Instead Of Task.Init()? I Have The Need Of Specifying Docker And Repository, So Only Find Task.Create() Can Achive What I Need. But Then I End Up With Always Creating 2 Scripts For Each Task I

Can you add a screenshot of the execution section of the experiment when you add task.set_repo and when you don't (Just add some sample script in the same folder and run task.init and print hello world)?

8 months ago
0 Hi Everyone, I Have Been Using Clearml Self Hosted For Experiment Visualisation - Logging Loss And Uploading Debug Samples Etc. Our Clearml Server Is Running On A Aws Instance, With The Fileserver And Databases (Mongo, Redis Etc) On That Instance. We Run

Hi TimelyCrab1 , directing all your outputs to s3 is actually pretty easy. You simply need to configure api.files_server: <S3_BUCKET/SOME_DIR> in clearml.conf of all machines working on it.

Migrating existing data is more difficult since everywhere in the system everything is saved as links. I guess you could change the links in mongodb but I would advise against it.

2 years ago
0 Hi, I'M Trying To Access/Use Experiment'S Model+Data+Params My Model And Data Are Stored In S3 And I'M Not Sure What Is The Practice Of Getting Them Reddy To Use. When I Use

You can clone it via the UI, enqueue it to a queue that has a worker running against that queue. You should get a perfect 1:1 reproduction

3 years ago
0 Clearml Hyperparameters Optimization App Produces "Summary" Table With 'Task Id', Hyperparameters Values And 'Obective'. Is There A Way (== Function) For Adding Some Custom Data For This Table?

Hi @<1523701062857396224:profile|AttractiveShrimp45> , I'm afraid not. But you can always export these tables and plots into a report and add your custom data into the ClearML report as well

2 years ago
0 Hello, I’M Using

Great, thanks!

3 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

Is it possible there are some sub projects there?

2 years ago
0 When I Share A Link In Clearml Reports, It Require

Hi @<1570583237065969664:profile|AdorableCrocodile14> , you can export a report as a PDF 🙂

2 years ago
0 I Need Deploy Clearml On-Premise Without Docker? Please Mention Is There Any Ways To Follow?

Hi @<1556812506238816256:profile|LargeCormorant97> , I think you would need to go deeper and investigate each docker's environment and see what is run inside each container and what is the entrypoint since there are several containers each in charge of something else.

Is there a specific reason you need to deploy it without docker?

2 years ago
0 Clearml 1.3.2 I'M Running

UnevenDolphin73 , how can you tell that ClearML is trying to initialize a task when get_task is called?

3 years ago
0 Hello Again Guys, Just Curious, How Do I Get My Artifact To Be Under My Models Page? So I'M Looking At The

CluelessElephant89 , Hi 🙂

For ClearML to treat your artifact as a model you'd have to register it as a Model class like here:
https://clear.ml/docs/latest/docs/references/sdk/model_model

I'm guessing you'd want it as an output model, correct?

Do you want to register this artifact as both a model AND an artifact or would only having it as a model is enough?

4 years ago
0 Hi, I Am Trying To Use Agent, But I Have A Problem. Execution Of Task Stucks Like This

Can you provide a code snippet that makes agent hang?

3 years ago
0 Hey, Have Anybody Tried Writing An Automated Pipeline For Automatically Linking Experiments With Jira Issues Using Tags Or Task Name Prefixes? Seems Like A Cool Feature To Have.

@<1523701137134325760:profile|CharmingStarfish14> ,interesting, so what are you suggesting? Creating Jira tasks from special tags on ClearML?

one year ago
0 How Would I Go About Adding Multiple Credentials In The Autoscaler? (I.E. Specify Multiple

Before injecting anything into the instances you need to spin them up somehow. This is achieved by the application that is running and the credentials provided. So the credentials need to be provided to the AWS application somehow.

3 years ago
0 Hello, I Look Up To The Clearml Data Documentation, The Dataset.Add_External_Files Method Seems Like To Perform A Download From The Source Url. What If The Case I Already Have My Dataset In The Output_Uri That I Specify In The Dataset.Create? Btw I Use A

Hi @<1784754456546512896:profile|ConfusedSealion46> , in that case you can simply use add_external_files to the files that are already in your storage. Or am I missing something?

9 months ago
0 Hey Guys! I Have Multiple

I would also suggest using pipelines if you want to do several actions with a task controlling the progress.

3 years ago
Show more results compactanswers