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
Once I Have A Model Successfully Saved In Clearml, How Can I Instantiate It In A Notebook? I Have This For Artifacts:

Once I have a model successfully saved in ClearML, how can I instantiate it in a notebook?

I have this for artifacts:
def get_artifact(task_id, artifact_name): task = Task.get_task(task_id) return task.artifacts[artifact_name].get()I'd like something similar for models (xgb and sklearn only first)

  
  
Posted one year ago
Votes Newest

Answers


Hi ConvolutedSealion94 , you should use the InputModel/OutputModel modules for working with models:
https://clear.ml/docs/latest/docs/references/sdk/model_inputmodel

This makes getting models very easily directly by their IDs (Models have unique IDs). For example:
https://clear.ml/docs/latest/docs/references/sdk/model_inputmodel#get_local_copy
Or:
https://clear.ml/docs/latest/docs/references/sdk/model_inputmodel#get_weights_package

  
  
Posted one year ago
681 Views
1 Answer
one year ago
one year ago
Tags