Merge branch 'devel' of github.com:SheffieldML/GPy into devel

This commit is contained in:
Ricardo 2013-06-18 15:01:55 +01:00
commit 557498eef8
2 changed files with 2 additions and 3 deletions

View file

@ -18,7 +18,5 @@ import rbfcos
import rbf
import spline
import symmetric
import sympy_helpers.cpp
import sympy_helpers.h
import sympykern
import white

View file

@ -1,5 +1,6 @@
import numpy as np
from likelihood import likelihood
from GPy.util.linalg import jitchol
class Gaussian(likelihood):
"""
@ -7,7 +8,7 @@ class Gaussian(likelihood):
: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
"""