https://github.com/GPflow/GPflow
Revision 3f5cdd873c4df57737478d08119b92b4b92df37d authored by st-- on 13 February 2020, 11:37:15 UTC, committed by GitHub on 13 February 2020, 11:37:15 UTC
Previously, `Periodic` did not take active_dims, but the Kernel base class specifies active_dims as part of the interface, so this PR adds getter/setter that pass through to the base kernel, as well as accepting active_dims in the Periodic() constructor but raising an error when it is not consistent with base.active_dims.
1 parent 24426b3
Raw File
Tip revision: 3f5cdd873c4df57737478d08119b92b4b92df37d authored by st-- on 13 February 2020, 11:37:15 UTC
Improve documentation and behaviour of Periodic kernel (#1231)
Tip revision: 3f5cdd8
.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