Skip to content

Commit 5348575

Browse files
committed
remove is_observed usage from TestMarginalVsLatent
1 parent 5d6e94c commit 5348575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/tests/test_gp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ def setup_method(self):
809809
cov_func = pm.gp.cov.ExpQuad(3, [0.1, 0.2, 0.3])
810810
mean_func = pm.gp.mean.Constant(0.5)
811811
gp = pm.gp.Marginal(mean_func=mean_func, cov_func=cov_func)
812-
f = gp.marginal_likelihood("f", X, y, noise=0.0, is_observed=False, observed=y)
812+
f = gp.marginal_likelihood("f", X, y, noise=0.0)
813813
p = gp.conditional("p", Xnew)
814814
self.logp = model.logp({"p": pnew})
815815
self.X = X

0 commit comments

Comments
 (0)