https://github.com/GPflow/GPflow
Revision f36052b395dc48a473dcc5b49d8d9a3b5d6f58ba authored by st-- on 18 March 2020, 14:32:52 UTC, committed by GitHub on 18 March 2020, 14:32:52 UTC
Adds shape asserts to some of the modules listed in #1241:
- conditionals.mo_conditionals (not 100%)
- conditionals.util
- kullback_leiblers
- logdensities (only `multivariate_normal`)
1 parent d3ca3c9
Raw File
Tip revision: f36052b395dc48a473dcc5b49d8d9a3b5d6f58ba authored by st-- on 18 March 2020, 14:32:52 UTC
assert_shapes in code instead of just comments (#1219)
Tip revision: f36052b
.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