├── .gitignore ├── LICENSE ├── README.md ├── images ├── difference.PNG └── nested_lstm_diagram.PNG ├── imdb_nested_lstm.py └── nested_lstm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/README.md -------------------------------------------------------------------------------- /images/difference.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/images/difference.PNG -------------------------------------------------------------------------------- /images/nested_lstm_diagram.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/images/nested_lstm_diagram.PNG -------------------------------------------------------------------------------- /imdb_nested_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/imdb_nested_lstm.py -------------------------------------------------------------------------------- /nested_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Nested-LSTM/HEAD/nested_lstm.py --------------------------------------------------------------------------------