Getting Started
This section shows you how to get your feet wet with BoTorch.
Before jumping the gun, we recommend you start with the high-level Overview to learn about the basic concepts in BoTorch.
Installing BoTorch
Installation Requirements:
- Python >= 3.6
- PyTorch >= 1.1
- gpytorch >= 0.3.2
- scipy
BoTorch is easily installed via
Anaconda (recommended)
or pip
:
conda install botorch -c pytorch
pip install botorch
For more detailed installation instructions, please see the Project Readme on GitHub.
Basic Components
Here's a quick run down of the main components of a Bayesian Optimization loop.
Fit a Gaussian Process model to data
import torch from botorch.models import SingleTaskGP from botorch.fit import fit_gpytorch_model from gpytorch.mlls import ExactMarginalLogLikelihood train_X = torch.rand(10, 2) Y = 1 - torch.norm(train_X - 0.5, dim=-1) + 0.1 * torch.rand(10) train_Y = (Y - Y.mean()) / Y.std() gp = SingleTaskGP(train_X, train_Y) mll = ExactMarginalLogLikelihood(gp.likelihood, gp) fit_gpytorch_model(mll);
Construct an acquisition function
from botorch.acquisition import UpperConfidenceBound UCB = UpperConfidenceBound(gp, beta=0.1)
Optimize the acquisition function
from botorch.optim import joint_optimize bounds = torch.stack([torch.zeros(2), torch.ones(2)]) candidate = joint_optimize( UCB, bounds=bounds, q=1, num_restarts=5, raw_samples=20, )
Tutorials
Our Jupyter notebook tutorials help you get off the ground with BoTorch. View and download download them here.
API Reference
For an in-depth reference of the various BoTorch internals, see our API Reference.
Contributing
You'd like to contribute to BoTorch? Great! Please see here for how to help out.