-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to control optimization process #84
Comments
Hi @rmrmg, for your questions:
|
There is very little information in documentation so based on source code it seems to me there are such option to control optimization process (all from https://github.com/PKU-DAIR/open-box/blob/96841e65a7e9900e5549d5f68411db35500f2e92/openbox/optimizer/generic_smbo.py):
for BO you need to defined acq_type, it is algorithm for new point proposal (which is tradeoff between exploration and exploitation). Among available option 'ei' (default) and 'pi' are well know and very popular with try to balance between exploration and exploitation, 'lbc' will promotes exploration, id est you will find shape of your space but not necessary best solution in the space.
acq_optimizer_type I dont know what it is and when it is applicable
init_strategy; is the strategy apply only for initial_runs (default=3) number of steps? Is this affect long (300+ steps) optimization process?
@open-box-team could you please coment and answer to questions?
The text was updated successfully, but these errors were encountered: