https://github.com/GPflow/GPflow
Raw File
Tip revision: a70437b215a671a63c4521a7c667f31677de2322 authored by Sergio Pascual on 21 September 2020, 18:06:01 UTC
Adding .mailmap file
Tip revision: a70437b
__init__.py
from .expectations import expectation, quadrature_expectation

from . import (
    cross_kernels,
    linears,
    mean_functions,
    misc,
    products,
    quadratures,
    squared_exponentials,
    sums,
)

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