Skip to content

how to control optimization process #84

Description

@rmrmg

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):

  1. advisor_type - basically define how now points for testing are proposed. There are such option:
  1. for BO you need to define surrogate model
  • 'gp' (gaussian-process), become slow after few hundreds points, according to doc should works best for mathematical problem (whatever it means)
  • 'prf' (probabilistc random forest) - documentation says it works best for practical problem (whatever it is), I guess it should work faster for long optimization (several hundreds and more points)
  • 'lightgbm'- this is gradient boosting which should work well, but in doc I could find any works any this. Is it worst that prf?
  1. 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.

  2. acq_optimizer_type I dont know what it is and when it is applicable

  3. 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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions