consistency
This commit is contained in:
parent
64e242e96c
commit
83cc77c860
@ -15,9 +15,9 @@ Recurrent networks introduce a *hidden state* that gets carried over each time w
|
|||||||
|
|
||||||
```julia
|
```julia
|
||||||
h = # ... initial state ...
|
h = # ... initial state ...
|
||||||
y₁, h = f(x₁, h)
|
h, y₁ = f(h, x₁)
|
||||||
y₂, h = f(x₂, h)
|
h, y₂ = f(h, x₂)
|
||||||
y₃, h = f(x₃, h)
|
h, y₃ = f(h, x₃)
|
||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user