https://github.com/GPflow/GPflow
Raw File
Tip revision: ae390970f25a41f4be8993e08bb7e1ce3923dc20 authored by frgsimpson on 18 August 2022, 15:08:45 UTC
Define initial likelihood variance
Tip revision: ae39097
__init__.py
from .base import GaussianQuadrature
from .deprecated import hermgauss, mvhermgauss, mvnquad, ndiag_mc, ndiagquad
from .gauss_hermite import NDiagGHQuadrature

__all__ = [
    "GaussianQuadrature",
    "NDiagGHQuadrature",
    "base",
    "deprecated",
    "gauss_hermite",
    "hermgauss",
    "mvhermgauss",
    "mvnquad",
    "ndiag_mc",
    "ndiagquad",
]
back to top