mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-29 23:06:22 +02:00
12 lines
428 B
Python
12 lines
428 B
Python
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
|
|
from model import *
|
|
from parameterization.parameterized import adjust_name_for_printing, Parameterizable
|
|
from parameterization.param import Param, ParamConcatenation
|
|
from parameterization.observable_array import ObsAr
|
|
|
|
from gp import GP
|
|
from sparse_gp import SparseGP
|
|
from svigp import SVIGP
|
|
from mapping import *
|