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
Hi Community, Using Clearml And Loving It So Far! I Had A Question Around The Models That Clearml Automatically Picks Up From The Frameworks And Saves Them. Is There A Way That I Can Control Which Models Actually Get Saved Though? I Would Like To Save Onl

Hi Community, using ClearML and loving it so far! I had a question around the Models that ClearML automatically picks up from the frameworks and saves them. Is there a way that I can control which models actually get saved though? I would like to save only the last & best checkpoints and not all of them if possible. Checking the documentation for Model, InputModel, and OutputModel, I couldn't see any control that would let me do that. Any suggestions here?

Saving things for archaelogy is important, but I think I would also end up bloating the system.

  
  
Posted one year ago
Votes Newest

Answers 2


@<1523701205467926528:profile|AgitatedDove14> this worked and gave me what I exactly needed. Thanks.

  
  
Posted one year ago

Hi @<1523701132025663488:profile|SlimyElephant79>

I would like to save only the last & best checkpoints and not all of them if possible.

Basically it will mimic the local file system, so if you overwrite the local files it will overwrite the remote model.
You can also disable auto logging, and manually upload the models
In Task.init pass auto_connect_frameworks False for the specific framework
see:
None

then use task.update_output_model or OutputModel class
None

  
  
Posted one year ago
730 Views
2 Answers
one year ago
one year ago
Tags