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

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.
https://optuna.readthedocs.io/en/stable/faq.html#how-can-i-save-and-resume-studies
https://optuna.readthedocs.io/en/stable/tutorial/20_recipes/001_rdb.html#rdb

  
  
Posted 2 years ago
Votes Newest

Answers 2


It's Great!
I will try it.
Thank you!

  
  
Posted 2 years ago

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 2 years ago
517 Views
2 Answers
2 years ago
one year ago
Tags