nlstm icon indicating copy to clipboard operation
nlstm copied to clipboard

Nested LSTM Cell

Results 3 nlstm issues
Sort by recently updated
recently updated
newest added

Hello, I have some questions to ask you. How should I use rnn_cell.py? Is it like the normal LSTM() method in TensorFlow? A ... Lstm = LSTM(50,return_sequence = False)(input) ......

This dramatically reduces memory requirements, as there will no longer be kept an extra copy of the concatenated weight tensor for each timestep (During backprop)