https://github.com/GPflow/GPflow
Raw File
Tip revision: 78238bd412bd8eb1422733a254fd1aeefc123ea3 authored by Artem Artemev on 14 November 2019, 15:23:18 UTC
Prepare release 2.0.0-rc1 (#1153)
Tip revision: 78238bd
__init__.py
from .base import Combination, Kernel, Product, Sum
from .changepoints import ChangePoints
from .linears import Linear, Polynomial
from .misc import ArcCosine, Coregion, Periodic
from .mo_kernels import (MultioutputKernel, SeparateIndependent, SharedIndependent, IndependentLatent, LinearCoregionalization)
from .statics import Constant, Static, White
from .stationaries import (SquaredExponential, Cosine, Exponential, Matern12, Matern32, Matern52, RationalQuadratic, Stationary)
from .convolutional import Convolutional

Bias = Constant
RBF = SquaredExponential
back to top