mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-10 04:22:38 +02:00
14 lines
561 B
Python
14 lines
561 B
Python
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
|
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
|
|
|
from gp_regression import GPRegression
|
|
from gp_classification import GPClassification
|
|
from sparse_gp_regression import SparseGPRegression
|
|
from svigp_regression import SVIGPRegression
|
|
from sparse_gp_classification import SparseGPClassification
|
|
from fitc_classification import FITCClassification
|
|
from gplvm import GPLVM
|
|
from sparse_gplvm import SparseGPLVM
|
|
from warped_gp import WarpedGP
|
|
from bayesian_gplvm import BayesianGPLVM
|
|
from mrd import MRD
|