https://github.com/GPflow/GPflow
Revision b0ddc6d1632f63632583ea70caca678fce3696f3 authored by st-- on 21 October 2019, 14:19:32 UTC, committed by GitHub on 21 October 2019, 14:19:32 UTC
Adds a notebook that demonstrates how to add inter-domain inducing variables to GPflow without having to touch the core code base, at the example of variational Fourier features (Hensman, Durrande, Solin, JMLR 18 (2018)).
1 parent 33ded03
Raw File
Tip revision: b0ddc6d1632f63632583ea70caca678fce3696f3 authored by st-- on 21 October 2019, 14:19:32 UTC
Notebook for Variational Fourier Features (#1062)
Tip revision: b0ddc6d
.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