Skip to content

Commit 2fa9ae2

Browse files
committed
fix error
1 parent 6e56226 commit 2fa9ae2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lectures/mle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -911,8 +911,8 @@ def logL(β, model):
911911
```
912912

913913
```{code-cell} ipython3
914-
G_logL = jax.grad(probit_logL)
915-
H_logL = jax.jacfwd(G_probit_logL)
914+
G_logL = jax.grad(logL)
915+
H_logL = jax.jacfwd(logL)
916916
```
917917

918918
```{solution-end}

0 commit comments

Comments
 (0)