├── .gitignore ├── AttRight.png ├── LICENSE ├── README.md ├── SpeechDownloader.py ├── SpeechGenerator.py ├── SpeechModels.py ├── Speech_Recog_Demo.ipynb ├── audioUtils.py ├── model-KWS-attRNN.tflite ├── model-attRNN.h5 ├── recognize_word.py ├── requirements.txt ├── word_eight.wav ├── word_five.wav └── word_follow.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/.gitignore -------------------------------------------------------------------------------- /AttRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/AttRight.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/README.md -------------------------------------------------------------------------------- /SpeechDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/SpeechDownloader.py -------------------------------------------------------------------------------- /SpeechGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/SpeechGenerator.py -------------------------------------------------------------------------------- /SpeechModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/SpeechModels.py -------------------------------------------------------------------------------- /Speech_Recog_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/Speech_Recog_Demo.ipynb -------------------------------------------------------------------------------- /audioUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/audioUtils.py -------------------------------------------------------------------------------- /model-KWS-attRNN.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/model-KWS-attRNN.tflite -------------------------------------------------------------------------------- /model-attRNN.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/model-attRNN.h5 -------------------------------------------------------------------------------- /recognize_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/recognize_word.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.10.1 2 | pandas>=0.25 3 | tqdm 4 | librosa 5 | matplotlib 6 | -------------------------------------------------------------------------------- /word_eight.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/word_eight.wav -------------------------------------------------------------------------------- /word_five.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/word_five.wav -------------------------------------------------------------------------------- /word_follow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglas125/SpeechCmdRecognition/HEAD/word_follow.wav --------------------------------------------------------------------------------