https://github.com/GPflow/GPflow
Revision d048736df973ccaf2bc8efd03f04c33893941a40 authored by st-- on 27 October 2019, 16:28:49 UTC, committed by Artem Artemev on 27 October 2019, 16:28:49 UTC
Explicitly sets the default optimization method for Scipy() to L-BFGS-B (as in gpflow1), instead of letting scipy.minimize() figure it out. This resulted in BFGS, which may be too aggressive when encountering complex optimization surfaces, so L-BFGS-B may be a more sensible default.
1 parent ca40b13
Raw File
Tip revision: d048736df973ccaf2bc8efd03f04c33893941a40 authored by st-- on 27 October 2019, 16:28:49 UTC
Change GPflow 2.0 scipy default method to L-BFGS-B (as in GPflow 1.0) (#1112)
Tip revision: d048736
.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