LSTM Ext.
Last updated
Last updated
Total params: 344,993
Trainable params: 344,993
Non-trainable params: 0
Total params: 336,705 Trainable params: 336,705 Non-trainable params: 0
SimpleRNN and LSTM are two kinds of RNNs; always use LSTM instead of SimpleRNN.
Use Bi-RNN instead of RNN whenever possible.
Stacked RNN may be better than a single RNN layer (if n is big).
Pretrain the embedding layer (if n is small).
Layer (type) | Output Shape | Param |
---|---|---|
Layer (type) | Output Shape | Param |
---|---|---|
embedding_1 (Embedding)
(None, 500, 32)
320000
lstm_1(LSTM)
(None, 500, 32)
8320
lstm_2(LSTM)
(None, 500, 32)
8320
lstm_3(LSTM)
(None, 32)
8320
dense_1 (Dense)
(None, 1)
33
embedding_1 (Embedding)
(None, 500, 32)
320000
bidirectional_1 (Bidirection)
(None, 64)
16640
dense_1 (Dense)
(None, 1)
65