https://github.com/GPflow/GPflow
Revision 72de787b10c0bb97f99b0447c42c0e300e8e3b36 authored by joelberkeley-pio on 30 March 2020, 17:58:43 UTC, committed by GitHub on 30 March 2020, 17:58:43 UTC
1 parent 1e936e0
Raw File
Tip revision: 72de787b10c0bb97f99b0447c42c0e300e8e3b36 authored by joelberkeley-pio on 30 March 2020, 17:58:43 UTC
rename jit to compile (#1392)
Tip revision: 72de787
__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