An open API service indexing awesome lists of open source software.

https://github.com/titu1994/keras-minimal-rnn

Keras implementation of MinimalRNN: Toward More Interpretable and Trainable Recurrent Neural Networks
https://github.com/titu1994/keras-minimal-rnn

keras minimal minimalrnn rnn

Last synced: 3 months ago
JSON representation

Keras implementation of MinimalRNN: Toward More Interpretable and Trainable Recurrent Neural Networks

Awesome Lists containing this project

README

        

# Keras MinimalRNN
Keras implementation of [MinimalRNN: Toward More Interpretable and Trainable Recurrent Neural Networks](https://arxiv.org/abs/1711.06788).

## Network graph of MinimalRNNs (from the paper):



# Usage
Import `minimal_rnn.py` and use either the `MinimalRNNCell` or `MinimalRNN` layer

```python
from minimal_rnn import MinimalRNN

# this imports the layer rather than the cell
ip = Input(...) # Rank 3 input shape
x = MinimalRNN(units=128)(ip)
...
```