mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-11 13:02:38 +02:00
Broken whilst unlinking GP and sparse_GP, kern not being imported
This commit is contained in:
parent
26b4cd6c4f
commit
1302c46ace
16 changed files with 328 additions and 318 deletions
|
|
@ -5,7 +5,7 @@ Created on 10 Apr 2013
|
|||
'''
|
||||
from GPy.core import model
|
||||
from GPy.models.Bayesian_GPLVM import Bayesian_GPLVM
|
||||
from GPy.models.sparse_GP import sparse_GP
|
||||
from GPy.core import sparse_GP
|
||||
from GPy.util.linalg import PCA
|
||||
from scipy import linalg
|
||||
import numpy
|
||||
|
|
@ -23,7 +23,7 @@ class MRD(model):
|
|||
:type likelihood_list: [GPy.likelihood] | [Y1..Yy]
|
||||
:param names: names for different gplvm models
|
||||
:type names: [str]
|
||||
:param Q: latent dimensionality (will raise
|
||||
:param Q: latent dimensionality (will raise
|
||||
:type Q: int
|
||||
:param initx: initialisation method for the latent space
|
||||
:type initx: 'PCA'|'random'
|
||||
|
|
@ -77,6 +77,7 @@ class MRD(model):
|
|||
self.MQ = self.M * self.Q
|
||||
|
||||
model.__init__(self) # @UndefinedVariable
|
||||
self._set_params(self._get_params())
|
||||
|
||||
@property
|
||||
def X(self):
|
||||
|
|
@ -153,7 +154,7 @@ class MRD(model):
|
|||
def _get_params(self):
|
||||
"""
|
||||
return parameter list containing private and shared parameters as follows:
|
||||
|
||||
|
||||
=================================================================
|
||||
| mu | S | Z || theta1 | theta2 | .. | thetaN |
|
||||
=================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue