Skip to content

Commit 504f836

Browse files
committed
switch from seed arg to random_seed for initial point
1 parent 627e49d commit 504f836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/tests/distributions/test_timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ def sde_fn(x, k, d, s):
876876
**kwargs,
877877
)
878878

879-
t0_init = t0.initial_point(seed=RANDOM_SEED)
879+
t0_init = t0.initial_point(random_seed=RANDOM_SEED)
880880
t1_init = {f"y_{i}": t0_init["y"][i] for i in range(batch_size)}
881881
np.testing.assert_allclose(
882882
t0.compile_logp()(t0_init),

0 commit comments

Comments
 (0)