https://github.com/GPflow/GPflow
Revision d618fe57e23d798f27aed8a50025811823ab0bd2 authored by st-- on 30 September 2020, 13:54:44 UTC, committed by GitHub on 30 September 2020, 13:54:44 UTC
* Global constant for num_gauss_hermite_points default
* QuadratureLikelihood with dependency injection (in preparation for unifying with MonteCarloLikelihood)
* ScalarLikelihood as QuadratureLikelihood subclass (with _quadrature_dim/_quadrature_log_prob/_quadrature_reduction)
* HeteroskedasticTFPConditional: rename argument to `scale_transform` and remove undocumented scaling
* DeprecationWarning for deprecated code
1 parent 12395be
Raw File
Tip revision: d618fe57e23d798f27aed8a50025811823ab0bd2 authored by st-- on 30 September 2020, 13:54:44 UTC
Likelihood quadrature cleanup (#1571)
Tip revision: d618fe5
.coveragerc
[report]
omit = *tests*, setup.py
exclude_lines =
    pragma: no cover
    def __repr__
    def __str__
    def _repr_html_
    def _repr_pretty_
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if __name__ == .__main__.:
    print
back to top