Skip to content

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

License

Notifications You must be signed in to change notification settings

titu1994/keras-minimal-rnn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keras MinimalRNN

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

Network graph of MinimalRNNs (from the paper):

Usage

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

from minimal_rnn import MinimalRNN 

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages