Revision 3669d135239bd53f3da1e73cf1e9cc855b1b485e authored by joelberkeley-pio on 11 June 2020, 13:18:56 UTC, committed by GitHub on 11 June 2020, 13:18:56 UTC
1 parent 7db2276
Raw File
__init__.py
from .base import Combination, Kernel, Product, Sum
from .convolutional import Convolutional
from .changepoints import ChangePoints
from .linears import Linear, Polynomial
from .misc import ArcCosine, Coregion
from . import multioutput

from .multioutput import (
    MultioutputKernel,
    SeparateIndependent,
    SharedIndependent,
    IndependentLatent,
    LinearCoregionalization,
)
from .periodic import Periodic
from .statics import Constant, Static, White
from .stationaries import (
    SquaredExponential,
    Cosine,
    Exponential,
    Matern12,
    Matern32,
    Matern52,
    RationalQuadratic,
    Stationary,
    IsotropicStationary,
    AnisotropicStationary,
)

Bias = Constant
RBF = SquaredExponential
back to top