spell fix in recurrent

This commit is contained in:
Sayan Sinha 2017-03-31 07:10:44 +05:30 committed by GitHub
parent b4221f6ea6
commit f71b437160

View File

@ -34,7 +34,7 @@ end
The only difference from a regular feed-forward layer is that we create a variable `y` which is defined as depending on itself. The `y{-1}` syntax means "take the value of `y` from the previous run of the network". The only difference from a regular feed-forward layer is that we create a variable `y` which is defined as depending on itself. The `y{-1}` syntax means "take the value of `y` from the previous run of the network".
Using recurrent layers is straightforward and no different feedforard ones in terms of the `Chain` macro etc. For example: Using recurrent layers is straightforward and no different feedforward ones in terms of the `Chain` macro etc. For example:
```julia ```julia
model = Chain( model = Chain(