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 Guys, How To Make Clearml Not Store Some Artifacts In The Stroage By Default? For Instance, Model Outputs

Hello guys, how to make ClearML not store some artifacts in the stroage by default? for instance, model outputs

  
  
Posted one year ago
Votes Newest

Answers 6


You can specify default storage string on projects pointing to for instance a S3 bucket

  
  
Posted one year ago

You can configure what to log and what not in the task init: https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk/#automatic-logging

You can turn it all off by setting auto_connect_frameworks to false but you can do a finer grained control of logged frameworks with framework-boolean pairs

  
  
Posted one year ago

TimelyMouse69 there is a typo in a auto_connect_framworks parameter name https://clear.ml/docs/latest/docs/clearml_sdk/task_sdk/#automatic-logging

  
  
Posted one year ago

You can set where to store it via this config file: https://clear.ml/docs/latest/docs/fundamentals/artifacts/#setting-upload-destination

  
  
Posted one year ago

TimelyMouse69 also I'm wondering how to do the following:
I'm traing a model with pytorch. If I turn off the logging by
auto_connect_frameworks=FalseI will not be able to track standard pytorch scalars like loss and lr . How to turn off storing artifacts and keep tracking scalars?

  
  
Posted one year ago
581 Views
6 Answers
one year ago
one year ago
Tags