mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 12:02:38 +02:00
Added missing comma
Added missing comma in the hstack call in _get_params.
This commit is contained in:
parent
e46f3b342e
commit
ca03714331
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class Additive(Mapping):
|
|||
return self.mapping1._get_param_names + self.mapping2._get_param_names
|
||||
|
||||
def _get_params(self):
|
||||
return np.hstack((self.mapping1._get_params() self.mapping2._get_params()))
|
||||
return np.hstack((self.mapping1._get_params(), self.mapping2._get_params()))
|
||||
|
||||
def _set_params(self, x):
|
||||
self.mapping1._set_params(x[:self.mapping1.num_params])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue