mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-29 15:59:41 +02:00
vardtc mixed noise
This commit is contained in:
parent
79041770c5
commit
1822f59433
2 changed files with 23 additions and 7 deletions
|
|
@ -76,12 +76,14 @@ class VarDTC(LatentFunctionInference):
|
|||
# VVT_factor is a matrix such that tdot(VVT_factor) = VVT...this is for efficiency!
|
||||
#self.YYTfactor = self.get_YYTfactor(Y)
|
||||
#VVT_factor = self.get_VVTfactor(self.YYTfactor, beta)
|
||||
het_noise = beta.size > 1
|
||||
if beta.ndim == 1:
|
||||
beta = beta[:, None]
|
||||
VVT_factor = beta*Y
|
||||
#VVT_factor = beta*Y
|
||||
trYYT = self.get_trYYT(Y)
|
||||
|
||||
# do the inference:
|
||||
het_noise = beta.size > 1
|
||||
num_inducing = Z.shape[0]
|
||||
num_data = Y.shape[0]
|
||||
# kernel computations, using BGPLVM notation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue