├── .gitignore ├── lstm.py ├── model.py ├── stack.py ├── tasks.py ├── theano_toolkit └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/.gitignore -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/lstm.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/model.py -------------------------------------------------------------------------------- /stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/stack.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/tasks.py -------------------------------------------------------------------------------- /theano_toolkit: -------------------------------------------------------------------------------- 1 | ../theano_toolkit/ -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/neural-transducers/HEAD/train.py --------------------------------------------------------------------------------