This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
A Recurrent Neural Network (LSTM) implementation example using TensorFlow library. | |
This example is using the MNIST database of handwritten digits (http://yann.lecun.com/exdb/mnist/) | |
Long Short Term Memory paper: http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf | |
Author: Aymeric Damien | |
Project: https://github.com/aymericdamien/TensorFlow-Examples/ | |
''' | |
from __future__ import print_function |