-
- Description:
BayesOpt is an efficient, C++ implementation of the Bayesian optimization methodology for nonlinear-optimization, experimental design and stochastic bandits. In the literature it is also called Sequential Kriging Optimization (SKO) or Efficient Global Optimization (EGO).
There are also interfaces for C, Matlab/Octave and Python. The online HTML version of the documentation is in: http://rmcantin.bitbucket.org/html/
Bayesian optimization uses a distribution over functions to build a metamodel of the unknown function for we are looking the extrema, and then apply some active learning strategy to select the query points that provides most potential interest for the seek. For that reason, it has been traditionally intended for optimization of expensive function. However, the efficiency of the library make it also interesting for many types of functions. It is intended to be both fast and clear for development and research. At the same time, it does everything the "right way". For example:
- latin hypercube sampling is used for the preliminary design step,
- extensive use of Cholesky decomposition and related tecniques to improve numeral stability and reduce computational cost,
- kernels, criteria and parametric functions can be combined to produce more advanced functions, etc.
Originally, it was developed for as part of a robotics research project, where a Gaussian process with hyperpriors on the mean and signal covariance parameters. Then, the metamodel was constructed using the Maximum a Posteriory (MAP) of the parameters. However, the library now has grown to support many more surrogate models, with different distributions (Gaussian processes, Student's-t processes, etc.), with many kernels and mean functions. It also provides different criteria (even some combined criteria) so the library can be used to any problem involving some bounded optimization, stochastic bandits, active learning for regression, etc.
You can also find more details at: http://bitbucket.org/rmcantin/bayesopt/wiki/Home
Important: This code is free to use. However, if you are using the library, specially if it is for research or academic purposes, please send me an email at rmcantin@unizar.es with your name, institution and a brief description of your interest for this code (one or two lines).
- Changes to previous version:
-Fixed bugs.
-Improved and extended documentation.
-Extended and simplified API accross platforms.
-Extended functionality (new surrogate functions, new priors, new kernels, new criteria).
-Improved modularity of the optimization process to allow plotting and debugging of intermediate steps.
-Added more demos and examples.
- BibTeX Entry: Download
- Supported Operating Systems: Linux, Windows, Macos
- Data Formats: Agnostic
- Tags: Active Learning, Optimization, Experimental Design, Gaussian Process, Bandits, Bayesian Optimization
- Archive: download here
Comments
No one has posted any comments yet. Perhaps you'd like to be the first?
Leave a comment
You must be logged in to post comments.