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
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Emacs backups
*~

# Pycharm IDE directory
.idea

# IPython Notebooks
.ipynb_checkpoints

# VSCode
.vscode
back to top