Skip to content

Commit b8a2d92

Browse files
Merge pull request #126 from pitmonticone/master
Fix typos
2 parents 9228207 + 61348f1 commit b8a2d92

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

_weave/homework01/hw1.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ for what column to modify.)
139139
### Part 3
140140

141141
Multithread your bifurcation graph generator by performing different steady
142-
state calcuations on different threads. Does your timing improve? Why? Be
142+
state calculations on different threads. Does your timing improve? Why? Be
143143
careful and check to make sure you have more than 1 thread!
144144

145145
### Part 4

_weave/homework03/hw3.jmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $\mu(0) = \frac{\partial C}{\partial p}$, and thus solving these ODEs in reverse
7070
gives the solution for the gradient as a part of the system at time zero.
7171

7272
Notice that $B_f^u(\lambda) = \lambda^\ast \frac{\partial f}{\partial u}$ and
73-
similarly for $\mu$. Implement an adjoint caluculation for a neural ordinary
73+
similarly for $\mu$. Implement an adjoint calculation for a neural ordinary
7474
differential equation where
7575

7676
$$u' = NN(u)$$
@@ -86,7 +86,7 @@ Start with only measuring the datapoint at the end, then try multiple data point
8686

8787
Generate data from the ODE $u' = Au$ where `A = [-0.1 2.0; -2.0 -0.1]` at
8888
`t=0.0:0.1:1.0` (use `saveat`) with $u(0) = [2,0]$. Define the cost function `C(θ)` to be
89-
the Euclidian distance between the neural ODE's solution and the data. Optimize
89+
the Euclidean distance between the neural ODE's solution and the data. Optimize
9090
this cost function by using gradient descent where the gradient is your
9191
adjoint method's output.
9292

_weave/lecture04/dynamical_systems.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ accumulation point the "infinite period orbit" is reached and chaos is found.
316316
A homework problem will delve into the properties of chaos as an example of a
317317
simple embarrassingly data-parallel problem.
318318

319-
## Efficient Implmentation of Dynamical Systems
319+
## Efficient Implementation of Dynamical Systems
320320

321321
Dynamical systems are just loops, so the implementation is easy to understand.
322322
However, there are a few things that one must keep in mind in order to allow

0 commit comments

Comments
 (0)