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
Hello, I Have A Trained Model (Saved As

Hello, I have a trained model (saved as http://model.pt ) which I wanted to upload to clearml and attach it to my experimental task. So from here, my subsequent model development can build from here. I can also visualise this model in clearml webapp ui. I think potentially is via OutputModel but I cannot find example codes for this purpose. Any sample code to share or better ways to do so?

  
  
Posted one year ago
Votes Newest

Answers 2


I figured out that it maybe possible to do these
experiment_task = Task.current_task()
OutputModel(experiment_task ).update_weights(' http://model.pt ') to attach it to the ClearML experiment task.

  
  
Posted one year ago

Hi OddShrimp85
If you pass 'output_uri=True' to task init, it will upload the model automatically, or as you said manually with outputmodel class

  
  
Posted one year ago