https://github.com/GPflow/GPflow
Revision 8562503b32a22c0c364474b46a53a959b6373a64 authored by st-- on 08 October 2020, 15:04:55 UTC, committed by GitHub on 08 October 2020, 15:04:55 UTC
Adds support for inducing variables with dynamically changing shape. Change usage from `len(inducing_variable)` to `inducing_variable.num_inducing` instead. Resolves #1578.
1 parent 9f95d87
Raw File
Tip revision: 8562503b32a22c0c364474b46a53a959b6373a64 authored by st-- on 08 October 2020, 15:04:55 UTC
Replace len(inducing_variable) with inducing_variable.num inducing property (#1594)
Tip revision: 8562503
.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