https://github.com/GPflow/GPflow
Revision 5ec7e9155692fa6f8d34efe5009811ac5bfca764 authored by st-- on 04 May 2020, 13:13:48 UTC, committed by GitHub on 04 May 2020, 13:13:48 UTC
* includes the repr() string in IPython/Jupyter notebook representation as well (i.e. fully-qualified class name and object hash (memory address), which helps distinguish objects from each other)
* only displays the parameter table when it is not empty
* makes use of default_summary_fmt() for IPython shell
1 parent 08739ce
Raw File
Tip revision: 5ec7e9155692fa6f8d34efe5009811ac5bfca764 authored by st-- on 04 May 2020, 13:13:48 UTC
Improve representation of GPflow objects in IPython/Jupyter notebook (#1453)
Tip revision: 5ec7e91
.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