Kyriema / matlab-rnn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Matlab implementation of some recurrent neural networks (RNNs) as follows

  • Vanilla RNN
  • Gated Recurrent Unit (GRU)
  • Long Short-Term Memory (LSTM)
  • Multiplicative Integration RNN (MIRNN)
  • Control Gate based RNN (CGRNN)
  • Self-Gated RNN (SGRNN)

These codes were written a long time ago when I started with deep learning, but they include some codes for computing gradients which are often absent in current Python codes of DL models. So, I think it is worthy to put them here for reference. 👍

The codes are only for classification task in which RNN type is one direction with one or two layers, and the decision is based on the last hidden state. Input is in cell array format , each component in a cell corresponds to a timestep.

About


Languages

Language:MATLAB 99.7%Language:M 0.3%