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
Hey Everyone! When Adding Files To A Dataset, Is There A Way To

Hey everyone! When adding files to a dataset, is there a way to avoid storing it on the clearml-server too? I am currently also storing it in a defined external storage. Thank you!

  
  
Posted one year ago
Votes Newest

Answers 2


Hi ShortElephant92 , how are you adding files currently? Code or CLI? You can specify the storage in both cases.

Via CLI using the
--output-uritag.
https://clear.ml/docs/latest/docs/clearml_data/clearml_data_cli#create

Via code use the output_url parameter during Dataset.create() call
https://clear.ml/docs/latest/docs/clearml_data/clearml_data_sdk#datasetcreate

  
  
Posted one year ago

Thank you CostlyOstrich36 !

  
  
Posted one year ago