Simple model selection: grid search for GPRΒΆ
Run simple model selection (grid search over hyperparameters’ space) of Gaussian Process Regression (GPR) on a simple 1D example.
__docformat__ = 'restructuredtext'
import numpy as np
from mvpa2.suite import *
import pylab as pl
# Generate train and test dataset:
train_size = 40
test_size = 100
F = 1
dataset = data_generators.sin_modulated(train_size, F)
dataset_test = data_generators.sin_modulated(test_size, F, flat=True)
print "Looking for better hyperparameters: grid search"
# definition of the search grid:
sigma_noise_steps = np.linspace(0.1, 0.5, num=20)
length_scale_steps = np.linspace(0.05, 0.6, num=20)
# Evaluation of log maringal likelohood spanning the hyperparameters' grid:
lml = np.zeros((len(sigma_noise_steps), len(length_scale_steps)))
lml_best = -np.inf
length_scale_best = 0.0
sigma_noise_best = 0.0
i = 0
for x in sigma_noise_steps:
j = 0
for y in length_scale_steps:
kse = SquaredExponentialKernel(length_scale=y)
g = GPR(kse, sigma_noise=x)
g.ca.enable("log_marginal_likelihood")
g.train(dataset)
lml[i, j] = g.ca.log_marginal_likelihood
if lml[i, j] > lml_best:
lml_best = lml[i, j]
length_scale_best = y
sigma_noise_best = x
# print x,y,lml_best
pass
j += 1
pass
i += 1
pass
# Log marginal likelihood contour plot:
pl.figure()
X = np.repeat(sigma_noise_steps[:, np.newaxis], sigma_noise_steps.size,
axis=1)
Y = np.repeat(length_scale_steps[np.newaxis, :], length_scale_steps.size,
axis=0)
step = (lml.max()-lml.min())/30
pl.contour(X, Y, lml, np.arange(lml.min(), lml.max()+step, step),
colors='k')
pl.plot([sigma_noise_best], [length_scale_best], "k+",
markeredgewidth=2, markersize=8)
pl.xlabel("noise standard deviation")
pl.ylabel("characteristic length_scale")
pl.title("log marginal likelihood")
pl.axis("tight")
print "lml_best", lml_best
print "sigma_noise_best", sigma_noise_best
print "length_scale_best", length_scale_best
print "number of expected upcrossing on the unitary intervale:", \
1.0/(2*np.pi*length_scale_best)
# TODO: reincarnate by providing a function within gpr.py
#
# Plot predicted values using best hyperparameters:
# pl.figure()
# compute_prediction(1.0, length_scale_best, sigma_noise_best, True, dataset,
# dataset_test.samples, dataset_test.targets, F, True)
See also
The full source code of this example is included in the PyMVPA source distribution (doc/examples/gpr_model_selection0.py
).