Open
Description
I could be wrong but I believe in Chp_14.ipynb cell 72, the covariance function
SIGMA = etasq * pm.gp.cov.Exponential(input_dim=1, ls=rhosq)
is not correct since it only takes the first column of Dmat_ord I think a correct covariance function would be something like below:
def __init__(self, etasq, rhosq):
self.etasq = etasq
self.rhosq = rhosq
def __call__(self, X):
return self.etasq * tt.exp(-self.rhosq * X) + tt.diag(np.ones(len(X)) * .01)
a similar problem is also present in cell 55.
Metadata
Metadata
Assignees
Labels
No labels