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
GrievingDuck15
Moderator
3 Questions, 6 Answers
  Active since 29 April 2023
  Last activity 5 months ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
6 Answers
599 Views
0 Votes 6 Answers 599 Views
6 months ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
I want to save some data on my OutputModel in order to make it more accessible when I'm using the model. When I use myOuputModel.save_metadata("somekey", "so...
one year ago
0 Votes
4 Answers
583 Views
0 Votes 4 Answers 583 Views
I have a dataset uploaded to clearml. By mistake I didn't set the destination correctly and the dataset is now saved on a computer rather than in s3. Is ther...
5 months ago
0 Hey, the <https://clear.ml/docs/latest/docs/references/api/#request-format|api reference> says that the url should be ```https://&lt;base_url&gt;/auth.login``` but to make it actually work I have to do ```https://&lt;base_url&gt;/api/v1.0/auth.login``` Th

So I tested using the version that I can see in the request going to the server, but the api returns "Requested version: 2.28, Used version 1.0" for some reason. I'm not sure if the message is wrong or it actually used 1.0.

6 months ago
0 I Want To Save Some Data On My Outputmodel In Order To Make It More Accessible When I'M Using The Model. When I Use

Ok, the mistake was staring me in the eye the entire time.

I thought that set_metadata worked on the local output model. But what it actually does is try to update metadata on the remote. The output model doesn't exist on the remote before you call update_weights , so you have to set_metadata after upload.

one year ago
0 I Want To Save Some Data On My Outputmodel In Order To Make It More Accessible When I'M Using The Model. When I Use
import torch
import torchvision
from clearml import Task, OutputModel

scripted_model = torch.jit.script(torchvision.models.resnet18())
scripted_model.save("model.pt")

task = Task.init(project_name="OutputModelMVE", task_name="Testing shit")

outputmodel = OutputModel(task=task, framework='PyTorch')
outputmodel.update_labels({'Clearml': 0, 'Debug': 1})
outputmodel.set_upload_destination(INSERT DESTINATION)
metadatas = dict(Score=("0.2", "float"),
                SomeField=("SomeField",...
one year ago