mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-24 14:15:14 +02:00
fixed inconsistent naming of parameters in LVM models
This commit is contained in:
parent
7cd1c426f4
commit
dfe500f8eb
4 changed files with 5 additions and 5 deletions
|
|
@ -148,7 +148,7 @@ class sparse_GP(GP):
|
|||
return np.hstack([self.Z.flatten(),GP._get_params(self)])
|
||||
|
||||
def _get_param_names(self):
|
||||
return sum([['iip_%i_%i'%(i,j) for i in range(self.Z.shape[0])] for j in range(self.Z.shape[1])],[]) + GP._get_param_names(self)
|
||||
return sum([['iip_%i_%i'%(i,j) for j in range(self.Z.shape[1])] for i in range(self.Z.shape[0])],[]) + GP._get_param_names(self)
|
||||
|
||||
def log_likelihood(self):
|
||||
""" Compute the (lower bound on the) log marginal likelihood """
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue