Fixed an import

This commit is contained in:
Teo de Campos 2013-06-20 17:15:37 +01:00
commit 70189a387b
33 changed files with 100 additions and 77 deletions

View file

@ -2,13 +2,14 @@ import numpy as np
from likelihood import likelihood
from ..util.linalg import jitchol
class Gaussian(likelihood):
"""
Likelihood class for doing Expectation propagation
:param Y: observed output (Nx1 numpy.darray)
..Note:: Y values allowed depend on the likelihood_function used
:param variance :
:param variance :
:param normalize: whether to normalize the data before computing (predictions will be in original scales)
:type normalize: False|True
"""