Skip to content

Commit 94d2339

Browse files
Update lectures/mccall_model.md
Co-authored-by: Humphrey Yang <39026988+HumphreyYang@users.noreply.github.com>
1 parent f66be67 commit 94d2339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/mccall_model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ def compute_stopping_time(w_bar, key):
676676
return t_final
677677
678678
@jax.jit
679-
def compute_mean_stopping_time(w_bar, num_reps=100000, seed=1234):
679+
def compute_mean_stopping_time(w_bar, num_reps=100000, seed=0):
680680
key = jax.random.PRNGKey(seed)
681681
keys = jax.random.split(key, num_reps)
682682
obs = jax.vmap(compute_stopping_time, in_axes=(None, 0))(w_bar, keys)

0 commit comments

Comments
 (0)