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 one year ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
2 Answers
996 Views
0 Votes 2 Answers 996 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...
one year ago
0 Votes
1 Answers
971 Views
0 Votes 1 Answers 971 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...
one year ago
0 Votes
0 Answers
760 Views
0 Votes 0 Answers 760 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 ...
one year ago
0 Votes
8 Answers
947 Views
0 Votes 8 Answers 947 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...
one year ago
0 Votes
1 Answers
845 Views
0 Votes 1 Answers 845 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...
one year ago
0 Votes
2 Answers
932 Views
0 Votes 2 Answers 932 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 ...
one year 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")

one year 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?

one year 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?

one year 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?

one year ago