├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data └── LibriSpeech │ ├── dev-clean-wav │ ├── 3752-4944-0041.txt │ ├── 3752-4944-0041.wav │ ├── 777-126732-0068.txt │ └── 777-126732-0068.wav │ ├── test-clean-wav │ ├── 4507-16021-0019.txt │ ├── 4507-16021-0019.wav │ ├── 7176-92135-0009.txt │ └── 7176-92135-0009.wav │ └── train-clean-100-wav │ ├── 1970-28415-0023.txt │ ├── 1970-28415-0023.wav │ ├── 211-122425-0059.txt │ ├── 211-122425-0059.wav │ ├── 2843-152918-0008.txt │ ├── 2843-152918-0008.wav │ ├── 3259-158083-0026.txt │ ├── 3259-158083-0026.wav │ ├── 3879-174923-0005.txt │ └── 3879-174923-0005.wav ├── demo.py ├── requirements.txt ├── tests └── tests_utils.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/README.md -------------------------------------------------------------------------------- /data/LibriSpeech/dev-clean-wav/3752-4944-0041.txt: -------------------------------------------------------------------------------- 1 | how delightful the grass smells -------------------------------------------------------------------------------- /data/LibriSpeech/dev-clean-wav/3752-4944-0041.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/dev-clean-wav/3752-4944-0041.wav -------------------------------------------------------------------------------- /data/LibriSpeech/dev-clean-wav/777-126732-0068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/dev-clean-wav/777-126732-0068.txt -------------------------------------------------------------------------------- /data/LibriSpeech/dev-clean-wav/777-126732-0068.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/dev-clean-wav/777-126732-0068.wav -------------------------------------------------------------------------------- /data/LibriSpeech/test-clean-wav/4507-16021-0019.txt: -------------------------------------------------------------------------------- 1 | it is the language of wretchedness -------------------------------------------------------------------------------- /data/LibriSpeech/test-clean-wav/4507-16021-0019.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/test-clean-wav/4507-16021-0019.wav -------------------------------------------------------------------------------- /data/LibriSpeech/test-clean-wav/7176-92135-0009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/test-clean-wav/7176-92135-0009.txt -------------------------------------------------------------------------------- /data/LibriSpeech/test-clean-wav/7176-92135-0009.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/test-clean-wav/7176-92135-0009.wav -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/1970-28415-0023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/1970-28415-0023.txt -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/1970-28415-0023.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/1970-28415-0023.wav -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/211-122425-0059.txt: -------------------------------------------------------------------------------- 1 | and the two will pass off together -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/211-122425-0059.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/211-122425-0059.wav -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/2843-152918-0008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/2843-152918-0008.txt -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/2843-152918-0008.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/2843-152918-0008.wav -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/3259-158083-0026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/3259-158083-0026.txt -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/3259-158083-0026.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/3259-158083-0026.wav -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/3879-174923-0005.txt: -------------------------------------------------------------------------------- 1 | he must vanish out of the world -------------------------------------------------------------------------------- /data/LibriSpeech/train-clean-100-wav/3879-174923-0005.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/data/LibriSpeech/train-clean-100-wav/3879-174923-0005.wav -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/demo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/tests_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/tests/tests_utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ugnelis/tensorflow-rnn-ctc/HEAD/utils.py --------------------------------------------------------------------------------