consistency

This commit is contained in:
Mike J Innes 2017-10-16 08:52:34 +01:00
parent 64e242e96c
commit 83cc77c860
1 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ Recurrent networks introduce a *hidden state* that gets carried over each time w
```julia
h = # ... initial state ...
y₁, h = f(x₁, h)
y₂, h = f(x₂, h)
y₃, h = f(x₃, h)
h, y₁ = f(h, x₁)
h, y₂ = f(h, x₂)
h, y₃ = f(h, x₃)
# ...
```