mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-18 13:55:14 +02:00
[mixed noise] correction for mixed noise var dtc. still have to make a test
This commit is contained in:
parent
d263432dde
commit
e2533675fd
2 changed files with 14 additions and 13 deletions
|
|
@ -23,7 +23,7 @@ class MixedNoise(Likelihood):
|
|||
variance = np.zeros(ind.size)
|
||||
for lik, j in zip(self.likelihoods_list, range(len(self.likelihoods_list))):
|
||||
variance[ind==j] = lik.variance
|
||||
return variance
|
||||
return variance[:,None]
|
||||
|
||||
def betaY(self,Y,Y_metadata):
|
||||
#TODO not here.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue