Replies: 3 comments
-
Tagging @GurjeetSinghSangra in case he has any additional comment. |
Beta Was this translation helpful? Give feedback.
-
Thanks @lacerbi ! I posted initially in the python version because I thought it could be a python specific thing, e.g. keeping a python object with the state of the optimizer, and then storing it to disk somehow. But I guess this concept can also be realised in MATLAB.
1(b).
I was actually thinking if that would be helpful or not. It was hard to wrap my mind around it because in pure bayesian optimizers one point doesn't mean much, so they would need to resample all the space around them again. But perhaps in BADS it is enough for the optimizer to continue the search without much recomputing(?).
|
Beta Was this translation helpful? Give feedback.
-
You're right - technically speaking, in Python it wouldn't be hard for us to allow the user to continue an optimization with the current
BADS is a semi-local optimization method (unlike pure Bayesian optimization which has claims of globality). This has both pros and cons. If you start BADS in a good region, it will likely stick around there without the need for sampling outside. Unless perhaps your objective function is very noisy. |
Beta Was this translation helpful? Give feedback.
-
Moving here a question asked by @pfebrer:
Beta Was this translation helpful? Give feedback.
All reactions