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 Can I Upload A Model Manually If I’M Training Using Catboost Framework, Which Is Not Natively Supported By

How can I upload a model manually if I’m training using catboost framework, which is not natively supported by http://clear.ml ? I checked the docs, e.g. https://allegro.ai/clearml/docs/docs/examples/frameworks/keras/manual_model_upload.html?highlight=manual but this upload are not fully manual, it still relies on the integration magic

  
  
Posted 2 years ago
Votes Newest

Answers 3


gotcha, thanks!

  
  
Posted 2 years ago

BTW: I think we had a better example, I'll try to look for one

  
  
Posted 2 years ago

Hi FiercePenguin76
https://allegro.ai/clearml/docs/rst/references/clearml_python_ref/model_module/model_outputmodel.html
Basically:
from clearml import OutputModel model = OutputModel() model.update_weights(weights_filename='local_file_here.bin')

  
  
Posted 2 years ago
598 Views
3 Answers
2 years ago
one year ago
Tags