This commit is contained in:
Julien Jerphanion 2018-07-19 00:14:02 +02:00 committed by GitHub
parent ee630a8566
commit 34d0c39e72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ Flux has powerful high-level features, and common architectures can be defined i
```julia
model = Chain(
Dense(768, 128, σ),
LSTM(128, 256)
LSTM(256, 128)
LSTM(128, 256),
LSTM(256, 128),
Dense(128, 10),
softmax)