├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── tts.iml ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── ASRT ├── .idea │ ├── .gitignore │ ├── ASRT_v1.1.0.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ └── modules.xml ├── 1.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── GUI.py ├── LanguageModel2.py ├── __pycache__ │ ├── LanguageModel2.cpython-38.pyc │ ├── data_loader.cpython-38.pyc │ ├── predict_speech_file.cpython-38.pyc │ ├── speechRecGUI2.cpython-38.pyc │ ├── speech_model.cpython-38.pyc │ └── speech_model_zoo.cpython-38.pyc ├── asrserver.py ├── asrt_config.json ├── client.py ├── data_loader.py ├── denoise_input_IterativeWiener.wav ├── dict.txt ├── download_default_datalist.py ├── evaluate_speech_model.py ├── model_language │ ├── dic_pinyin.txt │ ├── language_model1.txt │ └── language_model2.txt ├── predict_speech_file.py ├── requirements.txt ├── save_models │ ├── SpeechModel251.model.base.h5 │ └── SpeechModel251.model.h5 ├── speechRecGUI2.py ├── speech_features │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── base.cpython-38.pyc │ │ ├── sigproc.cpython-38.pyc │ │ └── speech_features.cpython-38.pyc │ ├── base.py │ ├── sigproc.py │ └── speech_features.py ├── speech_model.py ├── speech_model_zoo.py ├── speech_recorder.py ├── train_speech_model.py └── utils │ ├── __pycache__ │ ├── config.cpython-38.pyc │ └── ops.cpython-38.pyc │ ├── config.py │ ├── ops.py │ └── ops_test.py ├── FFTGUI.py ├── README.md ├── __pycache__ ├── FFTGUI.cpython-38.pyc ├── alg_denoise.cpython-38.pyc ├── alg_tts.cpython-36.pyc ├── alg_tts.cpython-38.pyc ├── denoGUI.cpython-38.pyc ├── denoise.cpython-38.pyc ├── mic.cpython-38.pyc └── ttsGUI.cpython-38.pyc ├── alg_denoise.py ├── alg_tts.py ├── denoGUI.py ├── denoise.py ├── mic.py ├── sim.py └── ttsGUI.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/.idea/tts.iml -------------------------------------------------------------------------------- /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/1.gif -------------------------------------------------------------------------------- /2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/2.gif -------------------------------------------------------------------------------- /3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/3.gif -------------------------------------------------------------------------------- /4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/4.gif -------------------------------------------------------------------------------- /5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/5.gif -------------------------------------------------------------------------------- /ASRT/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/.idea/.gitignore -------------------------------------------------------------------------------- /ASRT/.idea/ASRT_v1.1.0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/.idea/ASRT_v1.1.0.iml -------------------------------------------------------------------------------- /ASRT/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /ASRT/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /ASRT/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/.idea/modules.xml -------------------------------------------------------------------------------- /ASRT/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/1.gif -------------------------------------------------------------------------------- /ASRT/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/2.gif -------------------------------------------------------------------------------- /ASRT/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/3.gif -------------------------------------------------------------------------------- /ASRT/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/4.gif -------------------------------------------------------------------------------- /ASRT/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/5.gif -------------------------------------------------------------------------------- /ASRT/GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/GUI.py -------------------------------------------------------------------------------- /ASRT/LanguageModel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/LanguageModel2.py -------------------------------------------------------------------------------- /ASRT/__pycache__/LanguageModel2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/LanguageModel2.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/__pycache__/data_loader.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/data_loader.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/__pycache__/predict_speech_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/predict_speech_file.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/__pycache__/speechRecGUI2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/speechRecGUI2.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/__pycache__/speech_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/speech_model.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/__pycache__/speech_model_zoo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/__pycache__/speech_model_zoo.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/asrserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/asrserver.py -------------------------------------------------------------------------------- /ASRT/asrt_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/asrt_config.json -------------------------------------------------------------------------------- /ASRT/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/client.py -------------------------------------------------------------------------------- /ASRT/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/data_loader.py -------------------------------------------------------------------------------- /ASRT/denoise_input_IterativeWiener.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/denoise_input_IterativeWiener.wav -------------------------------------------------------------------------------- /ASRT/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/dict.txt -------------------------------------------------------------------------------- /ASRT/download_default_datalist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/download_default_datalist.py -------------------------------------------------------------------------------- /ASRT/evaluate_speech_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/evaluate_speech_model.py -------------------------------------------------------------------------------- /ASRT/model_language/dic_pinyin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/model_language/dic_pinyin.txt -------------------------------------------------------------------------------- /ASRT/model_language/language_model1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/model_language/language_model1.txt -------------------------------------------------------------------------------- /ASRT/model_language/language_model2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/model_language/language_model2.txt -------------------------------------------------------------------------------- /ASRT/predict_speech_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/predict_speech_file.py -------------------------------------------------------------------------------- /ASRT/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/requirements.txt -------------------------------------------------------------------------------- /ASRT/save_models/SpeechModel251.model.base.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/save_models/SpeechModel251.model.base.h5 -------------------------------------------------------------------------------- /ASRT/save_models/SpeechModel251.model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/save_models/SpeechModel251.model.h5 -------------------------------------------------------------------------------- /ASRT/speechRecGUI2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speechRecGUI2.py -------------------------------------------------------------------------------- /ASRT/speech_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/__init__.py -------------------------------------------------------------------------------- /ASRT/speech_features/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/speech_features/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/speech_features/__pycache__/sigproc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/__pycache__/sigproc.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/speech_features/__pycache__/speech_features.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/__pycache__/speech_features.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/speech_features/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/base.py -------------------------------------------------------------------------------- /ASRT/speech_features/sigproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/sigproc.py -------------------------------------------------------------------------------- /ASRT/speech_features/speech_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_features/speech_features.py -------------------------------------------------------------------------------- /ASRT/speech_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_model.py -------------------------------------------------------------------------------- /ASRT/speech_model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_model_zoo.py -------------------------------------------------------------------------------- /ASRT/speech_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/speech_recorder.py -------------------------------------------------------------------------------- /ASRT/train_speech_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/train_speech_model.py -------------------------------------------------------------------------------- /ASRT/utils/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/utils/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/utils/__pycache__/ops.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/utils/__pycache__/ops.cpython-38.pyc -------------------------------------------------------------------------------- /ASRT/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/utils/config.py -------------------------------------------------------------------------------- /ASRT/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/utils/ops.py -------------------------------------------------------------------------------- /ASRT/utils/ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ASRT/utils/ops_test.py -------------------------------------------------------------------------------- /FFTGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/FFTGUI.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/FFTGUI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/FFTGUI.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/alg_denoise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/alg_denoise.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/alg_tts.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/alg_tts.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/alg_tts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/alg_tts.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/denoGUI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/denoGUI.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/denoise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/denoise.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/mic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/mic.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/ttsGUI.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/__pycache__/ttsGUI.cpython-38.pyc -------------------------------------------------------------------------------- /alg_denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/alg_denoise.py -------------------------------------------------------------------------------- /alg_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/alg_tts.py -------------------------------------------------------------------------------- /denoGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/denoGUI.py -------------------------------------------------------------------------------- /denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/denoise.py -------------------------------------------------------------------------------- /mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/mic.py -------------------------------------------------------------------------------- /sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/sim.py -------------------------------------------------------------------------------- /ttsGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feeling-cold/Noise-suppression-and-speech-recognition-systems/HEAD/ttsGUI.py --------------------------------------------------------------------------------