https://github.com/GPflow/GPflow
Raw File
Tip revision: 23959d3e085b28fe844c6517ef287250f5da1e0f authored by ST John on 15 April 2021, 16:58:48 UTC
Merge branch 'st/new_svgp-redesign' into st/posterior_with_linear_operators
Tip revision: 23959d3
__init__.py
from . import (
    cross_kernels,
    linears,
    mean_functions,
    misc,
    products,
    quadratures,
    squared_exponentials,
    sums,
)
from .expectations import expectation, quadrature_expectation

__all__ = ["expectation", "quadrature_expectation"]
back to top