https://github.com/GPflow/GPflow
Revision bb3d1f44865b73b4fd8ad7e98410bac073a57202 authored by st-- on 19 September 2018, 13:48:08 UTC, committed by GitHub on 19 September 2018, 13:48:08 UTC
Minor code changes:
- adds rich representation to Parameter(ized) objects so `m.as_pandas_table()` can be replaced by `m` for pretty-printing in jupyter notebooks
- updates priors to have prettier printing (and more value checks)

Notebooks
- coreg_demo.ipynb: clean-up, typo fixes
- models.ipynb: clean-up, now actually consistent with current (gpflow-1.0) architecture
- kernels.ipynb: clean-up

Documentation
- updates various links in README.md (JH's webpage, readthedocs, tensorflow installation)
- adds all currently existing notebooks to the documentation (under new section "advanced tutorials")

Stand-alone .py demo scripts in doc/source/notebooks/
- makes them runnable with current gpflow version
- adds "unmaintained" warning header
1 parent 83631b7
Raw File
Tip revision: bb3d1f44865b73b4fd8ad7e98410bac073a57202 authored by st-- on 19 September 2018, 13:48:08 UTC
Clean up notebooks and documentation (#849)
Tip revision: bb3d1f4
.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