You can read the tutorials at https://medium.com/@erikhallstrm
These files are adjusted to work wth the Tensorflow 1.3
- Bulid RNN using tensorflow using basic functinality.(RNN.py)
- Bulid RNN using RNN_Cell.(RNN_TFcell.py)
- Build LSTM using RNN_Cell.(LSTM_cell.py)
- Build Multi layered LSTM using list of cells.(Multi_Layered_LSTM.py)
- Build Multi layered LSTM using list of cells with inputs parallelized across timesteps.(Multi_Layered_LSTM_Paralled.py)
- Add dropout(Dropout_LSTM.py)
- Tried Batch Normalization(Batch_Norm_LSTM.py)