Skip to content

Commit e825b16

Browse files
authored
Fix another typo (#168)
1 parent a11b8af commit e825b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/more_julia/optimization_solver_packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ complicated combinations and compositions of intrinsic operations. In fact, the
107107

108108
In forward-mode AD, you first fix the variable you are interested in (called "seeding"), and then evaluate the chain rule in left-to-right order.
109109

110-
For example, with our $f(x_1, f_2)$ example above, if we wanted to calculate the derivative with respect to $x_1$ then
110+
For example, with our $f(x_1, x_2)$ example above, if we wanted to calculate the derivative with respect to $x_1$ then
111111
we can seed the setup accordingly. $\frac{\partial w_1}{\partial x_1} = 1$ since we are taking the derivative of it, while $\frac{\partial w_1}{\partial x_1} = 0$.
112112

113113
Following through with these, redo all of the calculations for the derivative in parallel with the function itself.

0 commit comments

Comments
 (0)