mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-15 06:52:39 +02:00
bug fix for infer_newX
This commit is contained in:
parent
bee1bc360e
commit
58a778225d
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ class InferenceX(Model):
|
|||
else:
|
||||
self.dL_dpsi2 = beta*(output_dim*self.posterior.woodbury_inv - np.einsum('md,od->mo',wv, wv))/2.
|
||||
self.dL_dpsi1 = beta*np.dot(self.Y, wv.T)
|
||||
self.dL_dpsi0 = -beta/2.* np.ones(self.Y.shape[0])
|
||||
self.dL_dpsi0 = -beta/2.*output_dim* np.ones(self.Y.shape[0])
|
||||
|
||||
def parameters_changed(self):
|
||||
if self.uncertain_input:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue