├── .gitignore ├── README.md ├── TensorFlow 1.2 seq2seq example.ipynb ├── Tensorflow 1.2 CTC example.ipynb ├── ctc.py ├── ctc_example.py ├── seq2seq.py └── seq2seq_example.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .ipynb_checkpoints 3 | *.swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/README.md -------------------------------------------------------------------------------- /TensorFlow 1.2 seq2seq example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/TensorFlow 1.2 seq2seq example.ipynb -------------------------------------------------------------------------------- /Tensorflow 1.2 CTC example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/Tensorflow 1.2 CTC example.ipynb -------------------------------------------------------------------------------- /ctc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/ctc.py -------------------------------------------------------------------------------- /ctc_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/ctc_example.py -------------------------------------------------------------------------------- /seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/seq2seq.py -------------------------------------------------------------------------------- /seq2seq_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pplantinga/tensorflow-examples/HEAD/seq2seq_example.py --------------------------------------------------------------------------------