https://github.com/GPflow/GPflow
Raw File
Tip revision: 5ec7e9155692fa6f8d34efe5009811ac5bfca764 authored by st-- on 04 May 2020, 13:13:48 UTC
Improve representation of GPflow objects in IPython/Jupyter notebook (#1453)
Tip revision: 5ec7e91
__init__.py
from .base import Likelihood, ScalarLikelihood, SwitchedLikelihood, MonteCarloLikelihood
from .scalar_discrete import (
    Bernoulli,
    Ordinal,
    Poisson,
)
from .scalar_continuous import (
    Beta,
    Exponential,
    Gamma,
    Gaussian,
    StudentT,
)
from .misc import GaussianMC
from .multiclass import (
    MultiClass,
    Softmax,
    RobustMax,
)
back to top