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
GorgeousWoodpecker69
Moderator
6 Questions, 7 Answers
  Active since 22 June 2023
  Last activity 8 months ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
1 Answers
476 Views
0 Votes 1 Answers 476 Views
I always see this error in the console when training a model, but I see all the model parameters tracked correclty. So I am wondering what it tries to log he...
9 months ago
0 Votes
1 Answers
558 Views
0 Votes 1 Answers 558 Views
I tried to create a model-serving endpoint with clearml-serving, but in the UI it is shown as "Draft", and the endpoint is not available. How can I start the...
10 months ago
0 Votes
2 Answers
528 Views
0 Votes 2 Answers 528 Views
I am using VSCode and S3 as my output directory, which i specify for the task (Task.init(project_name='test', task_name="test, output_uri=" None ")). The S3 ...
9 months ago
0 Votes
2 Answers
562 Views
0 Votes 2 Answers 562 Views
Hi, I am fine-tuning pretrained models from huggingface the trainer method. During the training I generate checkpoints which I want to access via ClearML. It...
10 months ago
0 Votes
8 Answers
516 Views
0 Votes 8 Answers 516 Views
Is there anyone who is using ClearML in a Jupyter Notebook. It looks like when using execute_remotely together with a jupyter noteebok, clearml tries to laun...
8 months ago
0 Votes
0 Answers
339 Views
0 Votes 0 Answers 339 Views
hello, i want to use clearML model serving to host a LLama2 model. It has another structure as common models, e.g. it's split up into 3 files. Can LLama2 be ...
5 months ago
0 Is There Anyone Who Is Using Clearml In A Jupyter Notebook. It Looks Like When Using Execute_Remotely Together With A Jupyter Noteebok, Clearml Tries To Launch A Jupyter Notebook Inside The Docker Container. It Fails Then With

I executed the following code in a notebook:

from clearml import Task
task = Task.init(project_name='Test', task_name="TEST NOTEBOOK")
task.execute_remotely(queue_name="RTX A6000")
print("HELLO")

8 months ago
0 Is There Anyone Who Is Using Clearml In A Jupyter Notebook. It Looks Like When Using Execute_Remotely Together With A Jupyter Noteebok, Clearml Tries To Launch A Jupyter Notebook Inside The Docker Container. It Fails Then With

I could get rid of the error message not by adding

!pip install jupyter

But now the task starts and never finishes. I think it's because it starts a Jupyter Kernel in ClearML instead of just executing the code in my Notebook. Is there any configuration to tell ClearML it should just execute the code of the notebook remotely?

8 months ago
0 Is There Anyone Who Is Using Clearml In A Jupyter Notebook. It Looks Like When Using Execute_Remotely Together With A Jupyter Noteebok, Clearml Tries To Launch A Jupyter Notebook Inside The Docker Container. It Fails Then With

I ran the notebook as a standalone file. I don't have the exact start command, but it runs in docker mode on ubuntu 22.04 using the standard image. Is there anything to consider which might be related to the described issue?

8 months ago
0 Hi, I Am Fine-Tuning Pretrained Models From Huggingface The Trainer Method. During The Training I Generate Checkpoints Which I Want To Access Via Clearml. It Correctly Uploads Trainig_Args.Bin,

Thanks. That would mean I cannot abort the training process, but have to wait until its finished to call the upload_artifact? Is there a reason why it's not logging all the generated files?

10 months ago