mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-05 14:55:15 +02:00
Small fixes.
This commit is contained in:
parent
a25844ac71
commit
15a8a270d4
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ class StateSpace(Model):
|
|||
Y = self.posterior_samples_f(X,size)
|
||||
|
||||
# Add noise
|
||||
Y += np.sqrt(self.sigma2)*np.random.randn(Y.shape)
|
||||
Y += np.sqrt(self.sigma2)*np.random.randn(Y.shape[0],Y.shape[1])
|
||||
|
||||
# Return trajectory
|
||||
return Y
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue