Skip to main content

Bayesian Adaptive Direct Search in Python.

Project description

PyBADS: Bayesian Adaptive Direct Search in Python

What is it?

PyBADS is a Python implementation of the Bayesian Adaptive Direct Search (BADS) algorithm for solving difficult and mildly expensive optimization problems, originally implemented in MATLAB. BADS has been intensively tested for fitting a variety of computational models, and is currently being used in many computational labs around the world (see Google Scholar for many example applications).

In a benchmark with real model-fitting problems from computational and cognitive neuroscience, BADS performed on par or better than many other common and state-of-the-art optimizers, as shown in the original NeurIPS paper [1].

PyBADS requires no specific tuning and runs off-the-shelf like other Python optimizers (e.g., scipy.optimize.minimize).

Note: If you are interested in estimating posterior distributions (i.e., uncertainty and error bars) over model parameters, and not just point estimates, you might also want to check out Variational Bayesian Monte Carlo for Python (PyVBMC), a package for Bayesian posterior and model inference which can be used in synergy with PyBADS.

Documentation

The full documentation is available at: https://acerbilab.github.io/pybads/

When should I use PyBADS?

BADS is effective when:

  • the objective function landscape is rough (nonsmooth), typically due to numerical approximations or noise;
  • the objective function is at least moderately expensive to compute (e.g., more than 0.1 second per function evaluation);
  • the gradient is unavailable (black-box function);
  • the number of input parameters is up to about D = 20 or so.

Installation

PyBADS is available via pip and conda-forge, and requires Python version 3.9 or newer.

  1. Install with:
    python -m pip install pybads
    
    or:
    conda install --channel=conda-forge pybads
    
  2. (Optional): Install Jupyter to view the example Notebooks. You can skip this step if you are working from a Conda environment which already has Jupyter, but be aware that if the wrong jupyter executable is found on your path then import errors may arise.
    conda install jupyter
    
    If you are running Python 3.11 and get an UnsatisfiableError you may need to install Jupyter from conda-forge:
    conda install --channel=conda-forge jupyter
    
    The example notebooks can then be accessed by running
    python -m pybads
    

If you wish to install directly from latest source code, please see the instructions for developers and contributors.

Quick start

The typical workflow of PyBADS follows four steps:

  1. Define the target (or objective) function;
  2. Setup the problem configuration (optimization bounds, starting point, possible constraint violation function);
  3. Initialize and run the optimization;
  4. Examine and visualize the results.

Running the optimizer in step 3 only involves a couple of lines of code:

from pybads import BADS
# ...
bads = BADS(target, x0, lower_bounds, upper_bounds, plausible_lower_bounds, plausible_upper_bounds)
optimize_result = bads.optimize()

with input arguments:

  • target: the target function, it takes as input a vector and returns its function evaluation;
  • x0: the starting point of the optimization problem. If it is not given, the starting point is randomly drawn from the problems bounds;
  • lower_bounds and upper_bounds: hard lower and upper bounds for the optimization region (can be -inf and inf, or bounded);
  • plausible_lower_bounds and plausible_upper_bounds: plausible lower and upper bounds, that represent our best guess at bounding the region where the solution might lie;
  • non_box_cons (optional): a callable function that denotes non-box constraint violations.

The outputs are:

  • optimize_result: a OptimizeResult which presents relevant information about the solution and the optimization problem. In particular:
    • "x": the minimum point found by the optimizer;
    • "fval": the value of the function at the given solution.

For a full list and description of the entries of the optimize_result object, see the OptimizeResult class documentation.

Next steps

Once installed, example Jupyter notebooks can be found in the pybads/examples directory. They can also be viewed statically on the main documentation pages. These examples represent a full tutorial that will walk you through the basic usage of PyBADS as well as some if its more advanced features, such as noisy targets.

For practical recommendations, such as how to set lower_bounds, upper_bounds and the plausible bounds, check out the FAQ on the BADS wiki. Even though the FAQ refers to the MATLAB version of BADS, most of the concepts apply equally to PyBADS.

How does it work?

PyBADS/BADS follows a mesh adaptive direct search (MADS) procedure for function minimization that alternates poll steps and search steps (see Fig 1).

  • In the poll stage, points are evaluated on a mesh by taking steps in one direction at a time, until an improvement is found or all directions have been tried. The step size is doubled in case of success, halved otherwise.
  • In the search stage, a Gaussian process (GP) is fit to a (local) subset of the points evaluated so far. Then, we iteratively choose points to evaluate according to a lower confidence bound strategy that trades off between exploration of uncertain regions (high GP uncertainty) and exploitation of promising solutions (low GP mean).

Fig 1: BADS procedure BADS procedure

See here for a visualization of several optimizers at work, including BADS.

See the original BADS paper for more details (Acerbi and Ma, 2017).

Troubleshooting and contact

PyBADS is under active development. The original BADS algorithm has been extensively tested in several benchmarks and published papers, and the some benchmarks have been replicated with PyBADS. However, as with any optimization method, you should double-check your results.

If you have trouble doing something with PyBADS, spot bugs or strange behavior, or you simply have some questions, please feel free to:

References and citation

  1. Singh, S. G. & Acerbi, L. (2023). PyBADS: Fast and robust black-box optimization in Python. arXiv preprint. https://arxiv.org/abs/2306.15576

  2. Acerbi, L. & Ma, W. J. (2017). Practical Bayesian Optimization for Model Fitting with Bayesian Adaptive Direct Search. In Advances in Neural Information Processing Systems 31: 8222-8232. (paper + supplement on arXiv, NeurIPS Proceedings)

Please cite both references if you use PyBADS in your work (the 2017 paper introduced the framework, and the latest one is its Python library). You can cite PyBADS in your work with something along the lines of

We optimized the log likelihoods of our models using Bayesian adaptive direct search (BADS; Acerbi and Ma, 2017), via the PyBADS software (Singh and Acerbi, 2023). PyBADS alternates between a series of fast, local Bayesian optimization steps and a systematic, slower exploration of a mesh grid.

Besides formal citations, you can demonstrate your appreciation for PyBADS in the following ways:

  • Star :star: the PyBADS repository on GitHub;
  • Subscribe to the lab's newsletter for news and updates (new features, bug fixes, new releases, etc.);
  • Follow Luigi Acerbi on Twitter for updates about BADS/PyBADS and other projects;
  • Tell us about your model-fitting problem and your experience with PyBADS (positive or negative) in the lab's Discussions forum.

Note: If you are interested in estimating posterior distributions (i.e., uncertainty and error bars) over model parameters, and not just point estimates, you might also want to check out Variational Bayesian Monte Carlo for Python (PyVBMC), a package for Bayesian posterior and model inference which can be used in synergy with PyBADS.

BibTeX

@article{singh2023pybads,
  title={{PyBADS}: {F}ast and robust black-box optimization in {P}ython}, 
  author={Gurjeet Sangra Singh and Luigi Acerbi},
  publisher = {preprint},
  journal = {{arXiv}},
  url = {https://arxiv.org/abs/2306.15576},
  doi = {10.48550/ARXIV.2306.15576},
  year = {2023},
}

@article{acerbi2017practical,
    title={Practical {B}ayesian Optimization for Model Fitting with {B}ayesian Adaptive Direct Search},
    author={Acerbi, Luigi and Ma, Wei Ji},
    journal={Advances in Neural Information Processing Systems},
    volume={30},
    pages={1834--1844},
    year={2017}
  }

License

PyBADS is released under the terms of the BSD 3-Clause License.

Acknowledgments

PyBADS was developed by members (past and current) of the Machine and Human Intelligence Lab at the University of Helsinki. Work on the PyBADS package was supported by the Research Council of Finland Flagship programme: Finnish Center for Artificial Intelligence FCAI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyBADS-1.0.4.tar.gz (97.7 kB view hashes)

Uploaded Source

Built Distribution

PyBADS-1.0.4-py3-none-any.whl (122.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page