https://github.com/GPflow/GPflow
Revision df6ece2951d6835c71cbd8fa8d9908ee25ea7621 authored by Seth Axen on 12 December 2022, 14:22:33 UTC, committed by GitHub on 12 December 2022, 14:22:33 UTC
* Add usage of monitoring with Adam to notebook

* Add self to contributors

* Update release notes

* Update doc/sphinx/notebooks/getting_started/monitoring.pct.py

Co-authored-by: st-- <st--@users.noreply.github.com>

* Run make format

Co-authored-by: st-- <st--@users.noreply.github.com>
1 parent cce56f8
Raw File
Tip revision: df6ece2951d6835c71cbd8fa8d9908ee25ea7621 authored by Seth Axen on 12 December 2022, 14:22:33 UTC
Add usage of monitoring with Adam to notebook (#2028)
Tip revision: df6ece2
.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
*.ipynb

# VSCode
.vscode

# OSX
.DS_Store

# mypy artifacts
.mypy_cache

# TensorFlow logs
events.out.tfevents.*
back to top