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
I Didnt Know How To Link With S3

I didnt know how to link with s3

  
  
Posted one year ago
Votes Newest

Answers 7


Are you getting any error?

  
  
Posted one year ago

my modle file is on s3

  
  
Posted one year ago

oracle

  
  
Posted one year ago

Hi EnthusiasticCoyote30 , in Task.init() you have the output_uri parameter, you can use that to point to your s3 bucket.
For more reading, see here:
https://clear.ml/docs/latest/docs/references/sdk/task#taskinit

  
  
Posted one year ago

For configuration, please look here:
https://clear.ml/docs/latest/docs/integrations/storage

  
  
Posted one year ago

yes i did that

  
  
Posted one year ago

EnthusiasticCoyote30 you can register an existing Model with:
from clearml import InputModel model = InputModel.import_model(weights_url=" "...)

  
  
Posted one year ago