mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 20:12:38 +02:00
Added the structure to posterior.py to enable...
to enable computation from the posterior mean and variance, instead of the woodbury componnents This iss the first step in being able to use this structre for EP and the laplace approximation.
This commit is contained in:
parent
5ec64d2279
commit
83a49f132a
3 changed files with 58 additions and 11 deletions
|
|
@ -27,7 +27,7 @@ class GPRegression(GP):
|
|||
|
||||
likelihood = likelihoods.Gaussian()
|
||||
|
||||
super(GPRegression, self).__init__(X, Y, kernel, likelihood, name='gp regression')
|
||||
super(GPRegression, self).__init__(X, Y, kernel, likelihood, name='gp_regression')
|
||||
|
||||
def getstate(self):
|
||||
return GP.getstate(self)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue