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
Unanswered
Hello! How Can I Save And Resume Studies With Optune? If Best Quality Have Not Reached Or Another Reasons. Optune Have Capabilities For Resuming Studies.


Hi!
I believe you can stop and resume studies by adding these actions to your script:

Add save points via joblib.dump()
and connect them to clearml via clearml.model.OutputModel.connect()

Then, when you want to start or resume a study, load latest study file via joblib.load() and connect to clearml with http://clearml.model.InputModel.co nnect()

This way you can stop your training sessions with the agent and resume them from nearly the same point

I think all the required references are here: https://clear.ml/docs/latest/docs/references/sdk/model_model

  
  
Posted 3 years ago
127 Views
0 Answers
3 years ago
one year ago
Tags