mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 20:12:38 +02:00
Merge branch 'params' of github.com:SheffieldML/GPy into params
This commit is contained in:
commit
7bb6f4ba4e
17 changed files with 73 additions and 71 deletions
|
|
@ -29,8 +29,8 @@ class GPRegression(GP):
|
|||
|
||||
super(GPRegression, self).__init__(X, Y, kernel, likelihood, name='GP regression')
|
||||
|
||||
def getstate(self):
|
||||
return GP.getstate(self)
|
||||
def _getstate(self):
|
||||
return GP._getstate(self)
|
||||
|
||||
def setstate(self, state):
|
||||
return GP.setstate(self, state)
|
||||
def _setstate(self, state):
|
||||
return GP._setstate(self, state)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue