mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-28 14:26:23 +02:00
22 lines
524 B
Python
22 lines
524 B
Python
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
import warnings
|
|
warnings.filterwarnings("ignore", category=DeprecationWarning)
|
|
|
|
import core
|
|
from core.parameterization import transformations, priors
|
|
import models
|
|
import mappings
|
|
import inference
|
|
import util
|
|
import examples
|
|
import likelihoods
|
|
import testing
|
|
from numpy.testing import Tester
|
|
from nose.tools import nottest
|
|
import kern
|
|
import plotting
|
|
|
|
@nottest
|
|
def tests():
|
|
Tester(testing).test(verbose=10)
|