GPy/GPy/__init__.py

19 lines
368 B
Python
Raw Normal View History

# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
# Licensed under the BSD 3-clause license (see LICENSE.txt)
2012-11-29 16:31:48 +00:00
import kern
import models
import inference
import util
2013-01-18 18:15:36 +00:00
import examples
2012-11-29 16:31:48 +00:00
from core import priors
import likelihoods
import testing
from numpy.testing import Tester
from nose.tools import nottest
@nottest
def tests():
Tester(testing).test(verbose=10)