Nested-LSTM-NLSTM-Pytorch icon indicating copy to clipboard operation
Nested-LSTM-NLSTM-Pytorch copied to clipboard

NLSTM Nested LSTM in Pytorch

Results 1 Nested-LSTM-NLSTM-Pytorch issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, Seems that this implementation is different from the model described in the original paper. In line #93: > cell = torch.cat(((remember_gate * c_cur), (in_gate * cell_gate)),1) I will refer...