Skip to content

Commit

Permalink
Avoid flakyness of GP Latent Vs Marginal introduced by chol numerics
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianopaz committed Nov 10, 2024
1 parent 65ab162 commit 0ae2618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/gp/test_gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def testLatentMultioutput(self):
cov_func = pm.gp.cov.ExpQuad(3, [0.1, 0.2, 0.3])
mean_func = pm.gp.mean.Constant(0.5)
latent_gp = pm.gp.Latent(mean_func=mean_func, cov_func=cov_func)
latent_f = latent_gp.prior("f", X, n_outputs=n_outputs, reparameterize=True)
latent_f = latent_gp.prior("f", X, n_outputs=n_outputs, reparameterize=False)
latent_p = latent_gp.conditional("p", Xnew)

with pm.Model() as marginal_model:
Expand Down

0 comments on commit 0ae2618

Please sign in to comment.