Skip to content

Commit c2f96ef

Browse files
committed
lint
1 parent da3dd01 commit c2f96ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def model():
684684
beta = numpyro.sample(
685685
"beta", dist.MultivariateNormal(beta0, scale_tril=jnp.eye(S)))
686686

687-
# this fails because beta shape is (3,) while it should be (2, 3)
687+
# this fails because beta shape is (3,) while it should be (2, 3)
688688
mean = jnp.ones((T, d)) @ beta
689689
with numpyro.plate("data", T, dim=-1):
690690
numpyro.sample("obs", dist.MultivariateNormal(mean, scale_tril=jnp.eye(S)), obs=data)

0 commit comments

Comments
 (0)