https://github.com/GPflow/GPflow
Revision 5e841b739101292f4494008c255f6f6ff63b1985 authored by Artem Artemev on 19 April 2018, 14:24:02 UTC, committed by GitHub on 19 April 2018, 14:24:02 UTC
GPflow model saver. Supports native GPflow models and provides an interface for defining custom savers for user's models. Saver stores GPflow structures and pythonic types as numpy structured arrays and serializes them using HDF5.
1 parent 2fb4b6d
Raw File
Tip revision: 5e841b739101292f4494008c255f6f6ff63b1985 authored by Artem Artemev on 19 April 2018, 14:24:02 UTC
Model saver (#660)
Tip revision: 5e841b7
.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