mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-07 19:12:40 +02:00
bias kernel psi stats implemented.
This commit is contained in:
parent
cd22c96e00
commit
6d0a7afd4c
6 changed files with 170 additions and 113 deletions
|
|
@ -54,33 +54,33 @@ class white(kernpart):
|
|||
def psi0(self,Z,mu,S,target):
|
||||
target += self.variance
|
||||
|
||||
def dpsi0_dtheta(self,Z,mu,S,target):
|
||||
target += 1.
|
||||
def dpsi0_dtheta(self,partial,Z,mu,S,target):
|
||||
target += partial.sum()
|
||||
|
||||
def dpsi0_dmuS(self,Z,mu,S,target_mu,target_S):
|
||||
def dpsi0_dmuS(self,partial,Z,mu,S,target_mu,target_S):
|
||||
pass
|
||||
|
||||
def psi1(self,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi1_dtheta(self,Z,mu,S,target):
|
||||
def dpsi1_dtheta(self,partial,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi1_dZ(self,Z,mu,S,target):
|
||||
def dpsi1_dZ(self,partial,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi1_dmuS(self,Z,mu,S,target_mu,target_S):
|
||||
def dpsi1_dmuS(self,partial,Z,mu,S,target_mu,target_S):
|
||||
pass
|
||||
|
||||
def psi2(self,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi2_dZ(self,Z,mu,S,target):
|
||||
def dpsi2_dZ(self,partial,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi2_dtheta(self,Z,mu,S,target):
|
||||
def dpsi2_dtheta(self,partial,Z,mu,S,target):
|
||||
pass
|
||||
|
||||
def dpsi2_dmuS(self,Z,mu,S,target_mu,target_S):
|
||||
def dpsi2_dmuS(self,partial,Z,mu,S,target_mu,target_S):
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue