Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable BayesOpt #120

Merged
merged 15 commits into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
313 changes: 313 additions & 0 deletions examples/bayesopt_example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,313 @@
import warnings
warnings.filterwarnings('ignore')

import numpy as np
import functorch as ft
import torch
from torch import nn, optim
from torch import distributions as dists
from torch.nn import functional as F
from gpytorch import distributions as gdists
wiseodd marked this conversation as resolved.
Show resolved Hide resolved
import torch.utils.data as data_utils
from botorch.models.model import Model
from botorch.posteriors.gpytorch import GPyTorchPosterior
import tqdm

from laplace import Laplace
from laplace.curvature import AsdlGGN, BackPackGGN, AsdlHessian

import argparse, sys

from botorch.models.gp_regression import SingleTaskGP
from botorch.test_functions import Ackley, Branin
from botorch.acquisition.analytic import ExpectedImprovement, UpperConfidenceBound
from botorch.acquisition.monte_carlo import qExpectedImprovement
from botorch.optim.optimize import optimize_acqf

from typing import (
Any,
Callable,
Dict,
Hashable,
List,
Mapping,
Optional,
TYPE_CHECKING,
TypeVar,
Union,
)


class LaplaceBNN(Model):
"""
Install first:
pip install laplace-torch
"""

def __init__(
self,
train_X: torch.Tensor,
train_Y: torch.Tensor,
bnn: Laplace = None,
likelihood: str = 'regression',
batch_size: int = 1024):

super().__init__()

self.train_X = train_X
self.train_Y = train_Y
self.likelihood = likelihood
self.batch_size = batch_size
self.nn = nn.Sequential(
nn.Linear(train_X.shape[-1], 50),
nn.ReLU(),
nn.Linear(50, 50),
nn.Tanh(),
nn.Linear(50, train_Y.shape[-1])
)
self.bnn = bnn

if self.bnn is None:
self._train_model(self._get_train_loader())


def posterior(
self,
X: torch.Tensor,
output_indices: Optional[List[int]] = None,
observation_noise: bool = False,
posterior_transform=None,
**kwargs: Any,
) -> GPyTorchPosterior:
"""
Note: q is the num. of x's predicted jointly
"""
# Transform to `(batch_shape*q, d)`
B, Q, D = X.shape
X = X.reshape(B*Q, D)

# Posterior predictive distribution
# mean_y is (batch_shape*q, k); cov_y is (batch_shape*q*k, batch_shape*q*k)
mean_y, cov_y = self._get_prediction(X, joint=True)

# Mean in `(batch_shape, q*k)`
K = self.num_outputs
mean_y = mean_y.reshape(B, Q*K)

# Cov is `(batch_shape, q*k, q*k)`
cov_y += 1e-4*torch.eye(B*Q*K)
cov_y = cov_y.reshape(B, Q, K, B, Q, K)
cov_y = torch.einsum('bqkbrl->bqkrl', cov_y) # (B, Q, K, Q, K)
cov_y = cov_y.reshape(B, Q*K, Q*K)

dist = gdists.MultivariateNormal(mean_y, covariance_matrix=cov_y)
post_pred = GPyTorchPosterior(dist)

if posterior_transform is not None:
return posterior_transform(post_pred)

return post_pred


def condition_on_observations(self, X: torch.Tensor, Y: torch.Tensor, **kwargs: Any) -> Model:
self.train_X = torch.cat([self.train_X, X], dim=0)
self.train_Y = torch.cat([self.train_Y, Y], dim=0)

train_loader = self._get_train_loader()
self._train_model(train_loader)

return LaplaceBNN(
# Added dataset & retrained BNN
self.train_X, self.train_Y, self.bnn,
self.likelihood, self.batch_size
)

@property
def num_outputs(self) -> int:
r"""The number of outputs of the model."""
return self.train_Y.shape[-1]

def _train_model(self, train_loader):
"""
Train BNN with the Laplace approximation
"""
n_epochs = 1000
optimizer = optim.Adam(self.nn.parameters(), lr=1e-1, weight_decay=1e-3)
scheduler = optim.lr_scheduler.CosineAnnealingLR(optimizer, n_epochs*len(train_loader))
loss_func = nn.MSELoss()

for i in range(n_epochs):
for x, y in train_loader:
optimizer.zero_grad()
output = self.nn(x)
loss = loss_func(output, y)
loss.backward()
optimizer.step()
scheduler.step()

self.nn.eval()

self.bnn = Laplace(
self.nn, self.likelihood,
subset_of_weights='all', hessian_structure='kron',
)
self.bnn.fit(train_loader)
self.bnn.optimize_prior_precision(n_steps=30)


def _get_prediction(self, test_x: torch.Tensor, joint=True, use_test_loader=False):
"""
Batched Laplace prediction.

Args:
test_x: Tensor of size `(batch_shape, d)`.

Returns:
Tensor of size `(batch_shape, k)`
"""
if self.bnn is None:
print('Train your model first before making prediction!')

if not use_test_loader:
mean_y, cov_y = self.bnn(test_x, joint=joint)
else:
test_loader = data_utils.DataLoader(
data_utils.TensorDataset(test_x, torch.zeros_like(test_x)),
batch_size=256
)

mean_y, cov_y = [], []

for x_batch, _ in test_loader:
_mean_y, _cov_y = self.bnn(x_batch, joint=joint)
mean_y.append(_mean_y)
cov_y.append(_cov_y)

mean_y = torch.cat(mean_y, dim=0).squeeze()
cov_y = torch.cat(cov_y, dim=0).squeeze()

return mean_y, cov_y


def _get_train_loader(self):
return data_utils.DataLoader(
data_utils.TensorDataset(self.train_X, self.train_Y),
batch_size=self.batch_size, shuffle=True
)

if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--test_func', choices=['ackley', 'branin'], default='branin')
parser.add_argument('--acqf', choices=['EI', 'UCB', 'qEI'], default='EI')
parser.add_argument('--init_data', type=int, default=20)
parser.add_argument('--exp_len', type=int, default=500)
parser.add_argument('--randseed', type=int, default=1)
args = parser.parse_args()

np.random.seed(args.randseed)
torch.set_default_dtype(torch.float64)
torch.manual_seed(args.randseed)

if args.test_func == 'ackley':
true_f = Ackley(dim=2)
bounds = torch.tensor([[-32.768, 32.768], [-32.768, 32.768]]).T.double()
elif args.test_func == 'branin':
true_f = Branin()
bounds = torch.tensor([[-5, 10], [0, 15]]).T.double()
else:
print('Invalid test function!')
sys.exit(1)

print()
print(f'Test Function: {args.test_func}')
print('-------------------------------------')
print()

train_data_points = 20

train_x = torch.cat([
dists.Uniform(*bounds.T[i]).sample((train_data_points, 1))
for i in range(2) # for each dimension
], dim=1)
train_y = true_f(train_x).reshape(-1, 1)

test_x = torch.cat([
dists.Uniform(*bounds.T[i]).sample((10000, 1))
for i in range(2) # for each dimension
], dim=1)
test_y = true_f(test_x)

models = {
'RandomSearch': None,
'BNN-LA': LaplaceBNN(train_x, train_y),
'GP': SingleTaskGP(train_x, train_y),
}


def evaluate_model(model_name, model):
if model_name == 'GP':
pred = model.posterior(test_x).mean.squeeze()
elif model_name == 'BNN-LA':
pred, _ = model._get_prediction(test_x, use_test_loader=True, joint=False)
else:
return -1

return F.mse_loss(pred, test_y).squeeze().item()


for model_name, model in models.items():
np.random.seed(args.randseed)
torch.set_default_dtype(torch.float64)
torch.manual_seed(args.randseed)

best_y = train_y.min().item()
trace_best_y = []
pbar = tqdm.trange(args.exp_len)
pbar.set_description(
f'[{model_name}, MSE = {evaluate_model(model_name, model):.3f}; Best f(x) = {best_y:.3f}]'
)

for i in pbar:
if model_name == 'RandomSearch':
new_x = torch.cat([
dists.Uniform(*bounds.T[i]).sample((1, 1))
for i in range(len(bounds)) # for each dimension
], dim=1).squeeze()
else:
if args.acqf == 'EI':
acq_f = ExpectedImprovement(model, best_f=best_y, maximize=False)
elif args.acqf == 'UCB':
acq_f = UpperConfidenceBound(model, beta=0.2, maximize=False)
elif args.acqf == 'qEI':
acq_f = qExpectedImprovement(model, best_f=best_y, maximize=False)
else:
print('Invalid acquisition function!')
sys.exit(1)

# Get a proposal for new x
new_x, val = optimize_acqf(
acq_f,
bounds=bounds,
q=1 if args.acqf not in ['qEI'] else 5,
num_restarts=10,
raw_samples=20
)

if len(new_x.shape) == 1:
new_x = new_x.unsqueeze(0)

# Evaluate the objective on the proposed x
new_y = true_f(new_x).unsqueeze(-1) # (q, 1)

# Update posterior
if model_name != 'RandomSearch':
model = model.condition_on_observations(new_x, new_y)

# Update the current best y
if new_y.min().item() <= best_y:
best_y = new_y.min().item()

trace_best_y.append(best_y)
pbar.set_description(
f'[{model_name}, MSE = {evaluate_model(model_name, model):.3f}; Best f(x) = {best_y:.3f}, curr f(x) = {new_y.min().item():.3f}]'
)
17 changes: 15 additions & 2 deletions examples/regression_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,22 @@ def get_model():
f'prior precision={la.prior_precision.item():.2f}')

x = X_test.flatten().cpu().numpy()
f_mu, f_var = la(X_test)

# Two options:
# 1.) Marginal predictive distribution N(f_map(x_i), var(x_i))
# The mean is (m,k), the var is (m,k,k)
f_mu, f_var = la(X_test)

# 2.) Joint pred. dist. N((f_map(x_1),...,f_map(x_m)), Cov(f(x_1),...,f(x_m)))
# The mean is (m*k,) where k is the output dim. The cov is (m*k,m*k)
f_mu_joint, f_cov = la(X_test, joint=True)

# Both should be true
print(torch.allclose(f_mu.flatten(), f_mu_joint))
wiseodd marked this conversation as resolved.
Show resolved Hide resolved
print(torch.allclose(f_var.flatten(), f_cov.diag()))

f_mu = f_mu.squeeze().detach().cpu().numpy()
f_sigma = f_var.squeeze().sqrt().cpu().numpy()
f_sigma = f_var.squeeze().detach().sqrt().cpu().numpy()
pred_std = np.sqrt(f_sigma**2 + la.sigma_noise.item()**2)

plot_regression(X_train, y_train, x, f_mu, pred_std,
Expand Down
Loading