├── .gitignore ├── README.md ├── ctc.py ├── dictionary.txt ├── font.py ├── lstm.py ├── ocr.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/README.md -------------------------------------------------------------------------------- /ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/ctc.py -------------------------------------------------------------------------------- /dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/dictionary.txt -------------------------------------------------------------------------------- /font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/font.py -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/lstm.py -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/ocr.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawntan/theano-ctc/HEAD/test.py --------------------------------------------------------------------------------