mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-02 16:22:39 +02:00
added all authors to GP Regression copyright
This commit is contained in:
parent
e128059377
commit
3fd4e19acd
1 changed files with 2 additions and 3 deletions
|
|
@ -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)
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
||||||
|
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ..core import GP
|
from ..core import GP
|
||||||
from .. import likelihoods
|
from .. import likelihoods
|
||||||
|
|
@ -28,7 +27,7 @@ class GPRegression(GP):
|
||||||
|
|
||||||
likelihood = likelihoods.Gaussian()
|
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):
|
def getstate(self):
|
||||||
return GP.getstate(self)
|
return GP.getstate(self)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue