Skip to content

Commit 3c19688

Browse files
committed
Make test passes 🤞 hopefully
1 parent ecc9e49 commit 3c19688

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/tests/test_mixture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def build_toy_dataset(N, K):
368368
)
369369
)
370370
chol.append(pm.expand_packed_triangular(D, packed_chol[i], lower=True))
371-
comp_dist.append(pm.MvNormal.dist(mu=mu[i], chol=chol[i]))
371+
comp_dist.append(pm.MvNormal.dist(mu=mu[i], chol=chol[i], shape=D))
372372

373373
pm.Mixture("x_obs", pi, comp_dist, observed=X)
374374
with model:

0 commit comments

Comments
 (0)