In this tutorial, we compare the analytic and MC-based EI acquisition functions and show both scipy
- and torch
-based optimizers for optimizing the acquisition. This tutorial highlights the modularity of botorch and the ability to easily try different acquisition functions and accompanying optimization algorithms on the same fitted model.
import torch
from botorch.fit import fit_gpytorch_mll
from botorch.models import SingleTaskGP
from botorch.test_functions import Hartmann
from gpytorch.mlls import ExactMarginalLogLikelihood
neg_hartmann6 = Hartmann(dim=6, negate=True)
First, we generate some random data and fit a SingleTaskGP for a 6-dimensional synthetic test function 'Hartmann6'.
train_x = torch.rand(10, 6)
train_obj = neg_hartmann6(train_x).unsqueeze(-1)
model = SingleTaskGP(train_X=train_x, train_Y=train_obj)
mll = ExactMarginalLogLikelihood(model.likelihood, model)
fit_gpytorch_mll(mll);
Initialize an analytic EI acquisition function on the fitted model.
from botorch.acquisition import ExpectedImprovement
best_value = train_obj.max()
EI = ExpectedImprovement(model=model, best_f=best_value)
Next, we optimize the analytic EI acquisition function using 50 random restarts chosen from 100 initial raw samples.
from botorch.optim import optimize_acqf
new_point_analytic, _ = optimize_acqf(
acq_function=EI,
bounds=torch.tensor([[0.0] * 6, [1.0] * 6]),
q=1,
num_restarts=20,
raw_samples=100,
options={},
)
new_point_analytic
tensor([[0.4730, 0.0836, 0.8247, 0.5628, 0.2964, 0.6131]])
Now, let's swap out the analytic acquisition function and replace it with an MC version. Note that we are in the q = 1
case; for q > 1
, an analytic version does not exist.
from botorch.acquisition import qExpectedImprovement
from botorch.sampling import SobolQMCNormalSampler
sampler = SobolQMCNormalSampler(sample_shape=torch.Size([512]), seed=0)
MC_EI = qExpectedImprovement(model, best_f=best_value, sampler=sampler)
torch.manual_seed(seed=0) # to keep the restart conditions the same
new_point_mc, _ = optimize_acqf(
acq_function=MC_EI,
bounds=torch.tensor([[0.0] * 6, [1.0] * 6]),
q=1,
num_restarts=20,
raw_samples=100,
options={},
)
new_point_mc
tensor([[0.4730, 0.0835, 0.8248, 0.5627, 0.2963, 0.6130]])
Check that the two generated points are close.
torch.norm(new_point_mc - new_point_analytic)
tensor(0.0002)
We could also optimize using a torch
optimizer. This is particularly useful for the case of a stochastic acquisition function, which we can obtain by using a StochasticSampler
. First, we illustrate the usage of torch.optim.Adam
. In the code snippet below, gen_batch_initial_candidates
uses a heuristic to select a set of restart locations, gen_candidates_torch
is a wrapper to the torch
optimizer for maximizing the acquisition value, and get_best_candidates
finds the best result amongst the random restarts.
Under the hood, gen_candidates_torch
uses a convergence criterion based on exponential moving averages of the loss.
from botorch.sampling.stochastic_samplers import StochasticSampler
from botorch.generation import get_best_candidates, gen_candidates_torch
from botorch.optim import gen_batch_initial_conditions
resampler = StochasticSampler(sample_shape=torch.Size([512]))
MC_EI_resample = qExpectedImprovement(model, best_f=best_value, sampler=resampler)
bounds = torch.tensor([[0.0] * 6, [1.0] * 6])
batch_initial_conditions = gen_batch_initial_conditions(
acq_function=MC_EI_resample,
bounds=bounds,
q=1,
num_restarts=20,
raw_samples=100,
)
batch_candidates, batch_acq_values = gen_candidates_torch(
initial_conditions=batch_initial_conditions,
acquisition_function=MC_EI_resample,
lower_bounds=bounds[0],
upper_bounds=bounds[1],
optimizer=torch.optim.Adam,
options={"maxiter": 500},
)
new_point_torch_Adam = get_best_candidates(
batch_candidates=batch_candidates, batch_values=batch_acq_values
).detach()
new_point_torch_Adam
tensor([[0.4527, 0.1183, 0.8902, 0.5630, 0.3151, 0.5804]])
torch.norm(new_point_torch_Adam - new_point_analytic)
tensor(0.0855)
By changing the optimizer
parameter to gen_candidates_torch
, we can also try torch.optim.SGD
. Note that without the adaptive step size selection of Adam, basic SGD does worse job at optimizing without further manual tuning of the optimization parameters.
batch_candidates, batch_acq_values = gen_candidates_torch(
initial_conditions=batch_initial_conditions,
acquisition_function=MC_EI_resample,
lower_bounds=bounds[0],
upper_bounds=bounds[1],
optimizer=torch.optim.SGD,
options={"maxiter": 500},
)
new_point_torch_SGD = get_best_candidates(
batch_candidates=batch_candidates, batch_values=batch_acq_values
).detach()
new_point_torch_SGD
tensor([[0.3566, 0.0410, 0.7926, 0.3118, 0.3758, 0.6110]])
torch.norm(new_point_torch_SGD - new_point_analytic)
tensor(0.2928)