Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 1.08 KB

README.md

File metadata and controls

16 lines (13 loc) · 1.08 KB

An in depth review of LSTM based RNN in TensorFlow using MNIST

In this note book we implement a single layer LSTM based Recurrent Neural Network (RNN) classifier, for MNIST database of handwritten digits.

The note book organization is as follows.

  1. LSTM Based RNNs with TensorFlow
  2. Basics of LSTM Based RNN
  3. LSTM Based RNN in TensorFlow - A Closer Look into Details 3.1. Static VS Dynamic RNN 3.2. Important Notes on the shape of the input and outputs for RNN (tf.nn.dynamic_rnn) 3.3. Using Dynam RNN Requires Caution if we have inputs with different length 3.4. The Choice of LSTM Cell
  4. MNIST Dataset Overview
  5. RNN Implementation and The Code

If you are just interested to see the code and dont care about details, jump to Section IV of the notebook, or directly use this.