Skip to main content

Optimizing Posterior Samples for Bayesian Optimization via Rootfinding

Project description

TSRoots_Logo

Test Suite License Python Version

BO Iterations GIF

Paper

 
TSRoots

A Python Package for Efficient Global Optimization of Posterior-Based Acquisition Functions via Rootfinding in Bayesian Optimization

 
Bayesian Optimization (BO) uses acquisition functions as surrogates for expensive objective functions. Thompson Sampling, a popular BO strategy, optimizes posterior samples to guide exploration and exploitation. However, optimizing these samples can be complex and computationally challenging.

TSRoots streamlines this process by leveraging the separability of the multivariate Gaussian Process prior and a decoupled representation of the posterior. Integrated with advanced root-finding techniques, TSRoots efficiently selects starting points for gradient-based multistart optimization. This results in higher-quality solutions for posterior sample-based acquisition functions, enabling robust performance in both low- and high-dimensional settings.

Installation

Requirements

  • Python >= 3.7
  • PyTorch
  • chebpy

Requirments Installation Dependencies

Some required dependencies, such as torch and chebpy are not installed by default.

  • To install PyTorch, we recommend installing the appropriate version of PyTorch for your system by following the instructions here: PyTorch Installation Instructions. Although least preferd, you can directly install for CPU version by running pip install torch.
  • To install ChebPy, you can see installation instructions here: Chepy Installation Instructions. You can also directly install cheby via pip install git+https://github.com/chebpy/chebpy.git

Once the above requirements have been satisfied, you can install the TSRoots package in various ways: using pip,conda, or directly from Github.

Lightweight Installation of TSRoots

Using pip:

pip install tsroots

Via conda:

conda install -c conda-forge tsroots

Development Version

If you are contributing a pull request or for a full installation with examples, tests, and the latest updates, it is best to perform a manual installation:

git clone https://github.com/your_username/TS-roots.git
cd TS-roots
pip install -e .[docs,pytorch,test]
pip install git+https://github.com/chebpy/chebpy.git  # Install Chebpy from git

To verify correct installation, you can run on the test suite on your terminal via:

python shell/run_all_tests.py

Quick Start

This example demonstrates the core functionality of TS_roots to generate new points for Bayesian Optimization using normalized data and gradient-based rootfinding techniques. For a more detailed overview of model fitting, rootfinding, decoupled GP representation, and BO implementation including generating the dynamic plot above, check out the Getting Started Notebook.

from tsroots.optim import TSRoots
from tsroots.utils import generate_Xdata, generate_Ydata

import numpy as np
import matplotlib.pyplot as plt

# Define the objective function
def f_objective_example(x):
    return x * np.sin(x)

# Define bounds and generate sample data
lb_x_physical = np.array([-15])
ub_x_physical = np.array([15])
no_sample = 5
D = 1
seed = 42

# Generate initial samples and normalize them
X_physical_space, X_normalized = generate_Xdata(no_sample, D, seed, lb_x_physical, ub_x_physical)
Y_physical_space, Y_normalized = generate_Ydata(f_objective_example, X_physical_space)

# Instantiate and use TSRoots for optimization
TSRoots_BO = TSRoots(X_normalized, Y_normalized.flatten(), -np.ones(D), np.ones(D))
x_new_normalized, y_new_normalized, _ = TSRoots_BO.xnew_TSroots(plot=True)
# plot selected point
plt.scatter(x_new_normalized, y_new_normalized, color='blue', marker='x', linewidth=3.0, label='Selected Point')
plt.show()

print(f"New observation location: {x_new_normalized}")
print(f"New function value: {y_new_normalized}")

Citation

If you found TSRoots helpful, please cite the following paper:

@inproceedings{
adebiyi2024gaussian,
title={Gaussian Process Thompson Sampling via Rootfinding},
author={Taiwo Adebiyi and Bach Do and Ruda Zhang},
booktitle={NeurIPS 2024 Workshop on Bayesian Decision-making and Uncertainty},
year={2024},
url={https://openreview.net/forum?id=IpRLTVblaV}
}

The Team

TSRoots is produced by the Uncertainty Quantification Lab at the University of Houston; the primary maintainers are:

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

tsroots-0.1.12.tar.gz (27.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tsroots-0.1.12-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

Details for the file tsroots-0.1.12.tar.gz.

File metadata

  • Download URL: tsroots-0.1.12.tar.gz
  • Upload date:
  • Size: 27.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.0

File hashes

Hashes for tsroots-0.1.12.tar.gz
Algorithm Hash digest
SHA256 af17441b35a0b37f5da1df5172740306573bec68d39893ae629c0978469ab7b5
MD5 c04a357fd12ff93dfe5a4721e93f8aac
BLAKE2b-256 72612e6e1bb1010c5767e585e4ba1991c7b0c244c78f4ba648a01736997b3fcc

See more details on using hashes here.

File details

Details for the file tsroots-0.1.12-py3-none-any.whl.

File metadata

  • Download URL: tsroots-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.0

File hashes

Hashes for tsroots-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 19d3e9d458fb0a1f045cb00839d36681714d8eb33e2449171e94237ec1587110
MD5 7531e057100b836bff15ed237d0e0010
BLAKE2b-256 8be486ba8d99c76377ee6612372846a6c5d1e6b3a843a30ef1d30a972ca67668

See more details on using hashes here.

Supported by

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