Simeon and Keir's papers used a kernel that was a combination of a linear and a squared exponential (also known as radial basis function, or rbf):

the linear term seems odd as it is defined with respect to the origin, and it doesn't really make sense why you would want that property. One of the effects of this was that the hyperparameters have to be optimised on a certain ordering of the emulator parameters, which also doesn't seem necessary. So I've been looking at whether we can just drop the linear term and work with a squared exponential kernel.
The first place I looked was just at the emulator predictions, where the combined kernel is in white solid lines, and rbf only is in black dashed:

The predictions here look very similar, so the next step was to run a sampler:


The rbf-only kernel performs significantly worse for reasons I don't fully understand right now. Perhaps the best choice would be to stick with the combined kernel for now and for the first paper.
Simeon and Keir's papers used a kernel that was a combination of a linear and a squared exponential (also known as radial basis function, or rbf):
the linear term seems odd as it is defined with respect to the origin, and it doesn't really make sense why you would want that property. One of the effects of this was that the hyperparameters have to be optimised on a certain ordering of the emulator parameters, which also doesn't seem necessary. So I've been looking at whether we can just drop the linear term and work with a squared exponential kernel.
The first place I looked was just at the emulator predictions, where the combined kernel is in white solid lines, and rbf only is in black dashed:

The predictions here look very similar, so the next step was to run a sampler:

The rbf-only kernel performs significantly worse for reasons I don't fully understand right now. Perhaps the best choice would be to stick with the combined kernel for now and for the first paper.