Skip to content

Commit 269eb49

Browse files
jstacclaude
andcommitted
Fix Model class comment and indentation
- Changed "jitted class" to "model class" (Model is a NamedTuple, not jitted) - Fixed indentation from 2 spaces to standard 4 spaces 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ff39fee commit 269eb49

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lectures/mccall_model_with_separation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -335,15 +335,15 @@ dist = BetaBinomial(n-1, a, b) # distribution
335335
q_default = jnp.array(dist.pdf()) # probabilities as a JAX array
336336
```
337337

338-
Here's our jitted class for the McCall model with separation.
338+
Here's our model class for the McCall model with separation.
339339

340340
```{code-cell} ipython3
341341
class Model(NamedTuple):
342-
α: float = 0.2 # job separation rate
343-
β: float = 0.98 # discount factor
344-
c: float = 6.0 # unemployment compensation
345-
w: jnp.ndarray = w_default # wage outcome space
346-
q: jnp.ndarray = q_default # probabilities over wage offers
342+
α: float = 0.2 # job separation rate
343+
β: float = 0.98 # discount factor
344+
c: float = 6.0 # unemployment compensation
345+
w: jnp.ndarray = w_default # wage outcome space
346+
q: jnp.ndarray = q_default # probabilities over wage offers
347347
```
348348

349349
Now we iterate until successive realizations are closer together than some small tolerance level.

0 commit comments

Comments
 (0)