https://github.com/GPflow/GPflow
Revision 330074a49b242af49edb1e2665ea0199ca7a420a authored by st-- on 23 October 2019, 10:16:51 UTC, committed by Mark van der Wilk on 23 October 2019, 10:16:51 UTC
* WIP

* make it run

* rerun notebook

* rerun notebook after merging in bugfix

* Call step_callback through scipy.minimize's callback procedure (at the end of each step); previous behaviour was to call step_callback at each evaluation of objective function

* adjust callback signature

* changes to make it work under gpflow2: method=L-BFGS-B, tol=1e-11. increase callback frequency

* rerun notebook

* remove from notebook test blacklist

* fix Scipy
1 parent 6e43fec
Raw File
Tip revision: 330074a49b242af49edb1e2665ea0199ca7a420a authored by st-- on 23 October 2019, 10:16:51 UTC
GPflow 2.0 notebook update: FITC vs VFE (#1104)
Tip revision: 330074a
.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