Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lagleki/recurrent_neural_network_variants_examples
Implmentation of recurrent neural network and its' variants.
https://github.com/lagleki/recurrent_neural_network_variants_examples
Last synced: 15 days ago
JSON representation
Implmentation of recurrent neural network and its' variants.
- Host: GitHub
- URL: https://github.com/lagleki/recurrent_neural_network_variants_examples
- Owner: lagleki
- License: apache-2.0
- Created: 2018-03-09T14:35:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-05T08:21:17.000Z (almost 7 years ago)
- Last Synced: 2024-10-31T13:46:08.975Z (2 months ago)
- Language: Python
- Size: 49.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Implementation of RNN and its' variants
Currently Implemented Papers:
* [Quasi-Recurrent Neural Networks](https://arxiv.org/pdf/1611.01576.pdf) James Bradbury, Stephen Merity, Caiming Xiong, Richard Socher
* [Skip RNN: Learning to Skip State Updates in Recurrent Neural Networks](https://arxiv.org/abs/1708.06834)
* [Training RNNs as fast as CNNs](https://arxiv.org/pdf/1709.02755)[code](https://github.com/taolei87/sru)
* [Kronecker Highway RNN](https://arxiv.org/pdf/1705.10142.pdf)
* [Delta RNN](https://arxiv.org/pdf/1703.08864.pdf)
* [Highway Networks](https://arxiv.org/abs/1505.00387)
* [Recurrent Highway Networks](http://arxiv.org/abs/1607.03474)
* [Multiplicative Integration Within RNNs](https://arxiv.org/abs/1606.06630)
* [Recurrent Dropout](http://arxiv.org/pdf/1603.05118v1.pdf)
* [Layer Normalization](http://arxiv.org/abs/1607.06450)
* [Layer Normalization & Multiplicative Integration](http://arxiv.org/abs/1607.06450)
* [LSTM With Multiple Memory Arrays](https://arxiv.org/abs/1607.03085)
* [Minimal Gated Unit RNN](http://arxiv.org/abs/1603.09420)
* [Residual Connections Within Stacked RNNs](https://arxiv.org/abs/1609.08144)
* [GRU Mutants](http://www.jmlr.org/proceedings/papers/v37/jozefowicz15.pdf)
* [Weight Tying](https://arxiv.org/abs/1608.05859)