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
1 Question, 3 Answers
  Active since 29 April 2023
  Last activity 11 months ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
4 Answers
561 Views
0 Votes 4 Answers 561 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...
12 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
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",...
11 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.

11 months ago