mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-02 08:12:39 +02:00
fixed Alan's dependency nightmare.
This commit is contained in:
parent
f403e5b0b7
commit
d84ae52d41
3 changed files with 5 additions and 4 deletions
|
|
@ -2,16 +2,17 @@
|
|||
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
||||
|
||||
|
||||
import kern
|
||||
import core
|
||||
import models
|
||||
import inference
|
||||
import util
|
||||
import examples
|
||||
from core import priors
|
||||
import likelihoods
|
||||
import testing
|
||||
from numpy.testing import Tester
|
||||
from nose.tools import nottest
|
||||
import kern
|
||||
from core import priors
|
||||
|
||||
@nottest
|
||||
def tests():
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from .. import kern
|
|||
from ..util.plot import gpplot, Tango, x_frame1D, x_frame2D
|
||||
import pylab as pb
|
||||
|
||||
class GPBase(model):
|
||||
class GPBase(model.model):
|
||||
"""
|
||||
Gaussian Process model for holding shared behaviour between
|
||||
sprase_GP and GP models
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ import sys, pdb
|
|||
# from .. import kern
|
||||
# from ..core import model
|
||||
# from ..util.linalg import pdinv, PCA
|
||||
from ..core import GPLVM
|
||||
from GPLVM import GPLVM
|
||||
from sparse_GP_regression import sparse_GP_regression
|
||||
|
||||
class sparse_GPLVM(sparse_GP_regression, GPLVM):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue