mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-03 16:52:39 +02:00
fix: plotting_test
This commit is contained in:
parent
59dae7df59
commit
fbd43c4e9b
33 changed files with 36 additions and 84 deletions
|
|
@ -296,7 +296,7 @@ class Likelihood(Parameterized):
|
|||
elif quad_mode == 'gh':
|
||||
f = partial(self.integrate_gh)
|
||||
quads = zip(*map(f, Y.flatten(), mu.flatten(), np.sqrt(sigma2.flatten())))
|
||||
quads = np.hstack(quads)
|
||||
quads = np.hstack(list(quads))
|
||||
quads = quads.T
|
||||
else:
|
||||
raise Exception("no other quadrature mode available")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue