Skip to content

Commit 5fab7a7

Browse files
committed
Change Normal to Uniform to test combinations of transforms and deterministic
1 parent 31db9e6 commit 5fab7a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/tests/test_sampling_jax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_deterministic_samples():
5151
obs = np.random.normal(10, 2, size=100)
5252
obs_at = aesara.shared(obs, borrow=True, name="obs")
5353
with pm.Model() as model:
54-
a = pm.Normal("a", 0, 1)
54+
a = pm.Uniform("a", -20, 20)
5555
b = pm.Deterministic("b", a / 2.0)
5656
c = pm.Normal("c", a, sigma=1.0, observed=obs_at)
5757

0 commit comments

Comments
 (0)