added all authors to GP Regression copyright

This commit is contained in:
James Hensman 2014-01-24 15:48:08 +00:00
parent e128059377
commit 3fd4e19acd

View file

@ -1,7 +1,6 @@
# Copyright (c) 2012, James Hensman
# Copyright (c) 2012 - 2014 the GPy Austhors (see AUTHORS.txt)
# Licensed under the BSD 3-clause license (see LICENSE.txt)
import numpy as np
from ..core import GP
from .. import likelihoods
@ -28,7 +27,7 @@ class GPRegression(GP):
likelihood = likelihoods.Gaussian()
super(GPRegression, self).__init__(X, Y, kernel, likelihood, name='gp_regression')
super(GPRegression, self).__init__(X, Y, kernel, likelihood, name='GP regression')
def getstate(self):
return GP.getstate(self)