https://github.com/GPflow/GPflow
Revision 760ed24062b15f25a25e5caaad17028db7714a3b authored by Hugh Salimbeni on 22 August 2017, 14:00:04 UTC, committed by Mark van der Wilk on 22 August 2017, 14:00:04 UTC
* half way through pos def forcing

* likelihood checks

* added likelihood tests

* uncommented vec_to_tri

* tidying the tests a little

* added check inside model

* fixed test with exponential likelihood

* fixed multiclass notebook

* fixed ordinal notebook

* fixed ordinal notebook again

* changed benoulli check to warn

* re-ran ordinal notebook with float Y

* tidy and improve coverage
1 parent d3fd05e
Raw File
Tip revision: 760ed24062b15f25a25e5caaad17028db7714a3b authored by Hugh Salimbeni on 22 August 2017, 14:00:04 UTC
Likelihood dimension fixes (#441)
Tip revision: 760ed24
.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
back to top