mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-08 19:42:39 +02:00
sparse GP regression now working on this branch
This commit is contained in:
parent
5ba2099ee9
commit
ba84a43ea3
5 changed files with 34 additions and 26 deletions
|
|
@ -42,13 +42,13 @@ class white(kernpart):
|
|||
if np.all(X==X2):
|
||||
target += np.trace(partial)
|
||||
|
||||
def dKdiag_dtheta(self,X,target):
|
||||
np.add(target[:,0],1.,target[:,0])
|
||||
def dKdiag_dtheta(self,partial,X,target):
|
||||
target += np.sum(partial)
|
||||
|
||||
def dK_dX(self,partial,X,X2,target):
|
||||
pass
|
||||
|
||||
def dKdiag_dX(self,X,target):
|
||||
def dKdiag_dX(self,partial,X,target):
|
||||
pass
|
||||
|
||||
def psi0(self,Z,mu,S,target):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue