Skip to content

Commit 01c5e80

Browse files
Update lectures/mccall_model.md
Co-authored-by: Humphrey Yang <[email protected]>
1 parent 94d2339 commit 01c5e80

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
@@ -777,7 +777,7 @@ class McCallModelContinuous(NamedTuple):
777777
μ: float # location parameter in lognormal distribution
778778
w_draws: jnp.ndarray # draws of wages for Monte Carlo
779779
780-
def create_mccall_continuous(c=25, β=0.99, σ=0.5, μ=2.5, mc_size=1000, seed=1234):
780+
def create_mccall_continuous(c=25, β=0.99, σ=0.5, μ=2.5, mc_size=1000, seed=0):
781781
key = jax.random.PRNGKey(seed)
782782
s = jax.random.normal(key, (mc_size,))
783783
w_draws = jnp.exp(μ + σ * s)

0 commit comments

Comments
 (0)