├── LM_model ├── alphabet_zh.txt └── lm_trie ├── README.md ├── char_map.py ├── data_generator.py ├── data_test ├── 1.wav └── 13.wav ├── dict_4562.txt ├── model.py ├── recognize.py ├── speech_model ├── feats_mean.txt └── feats_std.txt ├── test_result ├── recongnnize_result.txt └── test.json ├── text.py ├── utils.py └── voice_to_text.py /LM_model/alphabet_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/LM_model/alphabet_zh.txt -------------------------------------------------------------------------------- /LM_model/lm_trie: -------------------------------------------------------------------------------- 1 | EIRT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /char_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/char_map.py -------------------------------------------------------------------------------- /data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/data_generator.py -------------------------------------------------------------------------------- /data_test/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/data_test/1.wav -------------------------------------------------------------------------------- /data_test/13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/data_test/13.wav -------------------------------------------------------------------------------- /dict_4562.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/dict_4562.txt -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /recognize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/recognize.py -------------------------------------------------------------------------------- /speech_model/feats_mean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/speech_model/feats_mean.txt -------------------------------------------------------------------------------- /speech_model/feats_std.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/speech_model/feats_std.txt -------------------------------------------------------------------------------- /test_result/recongnnize_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/test_result/recongnnize_result.txt -------------------------------------------------------------------------------- /test_result/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/test_result/test.json -------------------------------------------------------------------------------- /text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/text.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/utils.py -------------------------------------------------------------------------------- /voice_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunny8898/DeepSpeech-tensorflow/HEAD/voice_to_text.py --------------------------------------------------------------------------------