mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 12:02:38 +02:00
some gplvm related fixes
This commit is contained in:
parent
a71bbc0d21
commit
563fbd257b
6 changed files with 19 additions and 26 deletions
|
|
@ -36,7 +36,7 @@ class GPLVM(GP):
|
|||
|
||||
super(GPLVM, self).__init__(X, Y, kernel, likelihood, name='GPLVM')
|
||||
self.X = Param('X', X)
|
||||
self.add_parameter(self.X, ndex=0)
|
||||
self.add_parameter(self.X, index=0)
|
||||
|
||||
def initialise_latent(self, init, input_dim, Y):
|
||||
Xr = np.random.randn(Y.shape[0], input_dim)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue