https://github.com/GPflow/GPflow
Revision af89b6da49983f8487bab350dc64f2277903d500 authored by st-- on 22 August 2018, 10:26:46 UTC, committed by GitHub on 22 August 2018, 10:26:46 UTC
Stationary kernels are now implemented by K_r2 as a function of the scaled square distance or K_r as a function of the scaled Euclidean distance, see the docstrings for details. scaled_square_dist and scaled_euclid_dist are deprecated, and square_dist and euclid_dist are removed. RBF is now an alias for SquaredExponential.
1 parent 51e17ae
Raw File
Tip revision: af89b6da49983f8487bab350dc64f2277903d500 authored by st-- on 22 August 2018, 10:26:46 UTC
Cleaning up stationary kernel implementations (#827)
Tip revision: af89b6d
.coveragerc
[report]
omit = *tests*, setup.py
exclude_lines =
    pragma: no cover
    def __repr__
    def __str__
    def _repr_html_
    def _html_table_rows
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if __name__ == .__main__.:
    print
back to top