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
Answered
How Do You Save Models And Store The Classes As Well? When We Save The Model Using Pytorch We Just Save The State Dict And Not The Custom Classes For Different Models. I Was Thinking Of Just Pickling The Model But If Anyone Has A Better Suggestion That Wo

How do you save models and store the classes as well? When we save the model using pytorch we just save the state dict and not the custom classes for different models. I was thinking of just pickling the model but if anyone has a better suggestion that would be great. This is particularly useful for serving

  
  
Posted 2 years ago
Votes Newest

Answers 7


Looks to be working 🚀 just need to test one more thing. Thank you CostlyOstrich36

  
  
Posted 2 years ago

Can you please clarify? What does torch.nn.Module hold within? Isn't it just the weights configuration?

  
  
Posted one year ago

RobustRat47 , do you mean the weights file?

  
  
Posted one year ago

Hey having a few issues with this

  
  
Posted one year ago

the Model object

  
  
Posted one year ago

I can run clearml.OutputModel(task, framework='pytorch') to get the model from a previous task. but how can I get the pytorch model ( torch.nn.Module ) from the output model object

  
  
Posted one year ago