├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── audio_reader.py ├── ctc_tensorflow_example.py ├── file_logger.py ├── generate_audio_cache.py ├── out.tsv ├── requirements.txt ├── utils.py └── veusz ├── ctc_loss.vsz ├── ctc_loss_1.png ├── ctc_loss_2.png ├── exp2.png ├── ler_loss.vsz ├── ler_loss_1.png └── out.tsv /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [philipperemy] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/README.md -------------------------------------------------------------------------------- /audio_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/audio_reader.py -------------------------------------------------------------------------------- /ctc_tensorflow_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/ctc_tensorflow_example.py -------------------------------------------------------------------------------- /file_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/file_logger.py -------------------------------------------------------------------------------- /generate_audio_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/generate_audio_cache.py -------------------------------------------------------------------------------- /out.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/out.tsv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/utils.py -------------------------------------------------------------------------------- /veusz/ctc_loss.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/ctc_loss.vsz -------------------------------------------------------------------------------- /veusz/ctc_loss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/ctc_loss_1.png -------------------------------------------------------------------------------- /veusz/ctc_loss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/ctc_loss_2.png -------------------------------------------------------------------------------- /veusz/exp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/exp2.png -------------------------------------------------------------------------------- /veusz/ler_loss.vsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/ler_loss.vsz -------------------------------------------------------------------------------- /veusz/ler_loss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/ler_loss_1.png -------------------------------------------------------------------------------- /veusz/out.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipperemy/tensorflow-ctc-speech-recognition/HEAD/veusz/out.tsv --------------------------------------------------------------------------------