├── .gitignore ├── README.md ├── bnlstm.py └── train_mnist.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.pyc 3 | data 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/recurrent-batch-normalization-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /bnlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/recurrent-batch-normalization-pytorch/HEAD/bnlstm.py -------------------------------------------------------------------------------- /train_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jihunchoi/recurrent-batch-normalization-pytorch/HEAD/train_mnist.py --------------------------------------------------------------------------------