https://github.com/GPflow/GPflow
Revision 4bdd8a5eb1a7ba462bdef14db5f35b6e37598e94 authored by Louis Tiao on 04 March 2022, 10:28:47 UTC, committed by GitHub on 04 March 2022, 10:28:47 UTC
The `_init_variational_parameters` method was using the instance attribute (`self.q_diag`) as well as input argument `q_diag` which refer to the same thing and should never diverge. In fact, `self.diag` is never used anywhere else so does not have to be an attribute.
1 parent bc68675
Raw File
Tip revision: 4bdd8a5eb1a7ba462bdef14db5f35b6e37598e94 authored by Louis Tiao on 04 March 2022, 10:28:47 UTC
Improved confusing scoping of method (#1800)
Tip revision: 4bdd8a5
.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