https://github.com/GPflow/GPflow
Revision 96d686f7b956d8d0318505d99968a801bc5fb6e3 authored by st-- on 14 February 2020, 15:56:24 UTC, committed by GitHub on 14 February 2020, 15:56:24 UTC
* fix _repr_html_

* update intro_to_gpflow2 notebook with example use of gpflow.utilities.{parameter_dict, multiple_assign}

* update upper_bound notebook to remove workaround for #1119 (and add another one for #1260)
1 parent 2c318e8
Raw File
Tip revision: 96d686f7b956d8d0318505d99968a801bc5fb6e3 authored by st-- on 14 February 2020, 15:56:24 UTC
Add documentation of parameter copying to notebooks (#1259)
Tip revision: 96d686f
.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