Broken whilst unlinking GP and sparse_GP, kern not being imported

This commit is contained in:
Alan Saul 2013-06-04 16:05:33 +01:00
parent 26b4cd6c4f
commit 1302c46ace
16 changed files with 328 additions and 318 deletions

View file

@ -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 |
=================================================================