• Stars
    star
    133
  • Rank 272,600 (Top 6 %)
  • Language
    Python
  • License
    BSD 2-Clause "Sim...
  • Created over 10 years ago
  • Updated almost 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python package for modular Bayesian optimization

pybo

A Python package for modular Bayesian optimization.

This package provides methods for performing optimization of a possibly noise-corrupted function f. In particular this package allows us to place a prior on the possible behavior of f and select points in order to gather information about the function and its maximum.

Build Status Coverage Status

Installation

The easiest way to install this package is by running

pip install -r https://github.com/mwhoffman/pybo/raw/master/requirements.txt
pip install git+https://github.com/mwhoffman/pybo.git

which will install the package and any of its dependencies. Once the package is installed the included demos can be run directly via python. For example, by running

python -m pybo.demos.animated

A full list of demos can be viewed here.

Previous versions

The current version of pybo has undergone some change to its interface from previous versions. The previous stable release(s) of the package can be found here. For example, those users interested in a graphical interface to pybo can take a look at ProjectB, however this package requires a previous version which can be installed using:

pip install -r https://github.com/mwhoffman/pybo/raw/v0.1/requirements.txt
pip install git+https://github.com/mwhoffman/[email protected]

Note the v0.1 tag in the installation lines which corresponds to the relevant release.