├── Final_GUI.py ├── GMM_UBM.py ├── GUI.py ├── MFCC_DTW.py ├── README.md ├── UI ├── GMM_UBM_GUI.py ├── GMM_UBM_GUI.ui ├── __init__.py ├── final.py ├── final.ui └── tmp.py ├── VAD.py ├── d_vector.py ├── demo.mp4 ├── report ├── First.pdf ├── GMM_UBM.pdf ├── final.pdf └── mfcc报告.pdf ├── requirements.txt ├── utils ├── __init__.py ├── processing.py └── tools.py └── 展示.pptx /Final_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/Final_GUI.py -------------------------------------------------------------------------------- /GMM_UBM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/GMM_UBM.py -------------------------------------------------------------------------------- /GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/GUI.py -------------------------------------------------------------------------------- /MFCC_DTW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/MFCC_DTW.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/README.md -------------------------------------------------------------------------------- /UI/GMM_UBM_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/GMM_UBM_GUI.py -------------------------------------------------------------------------------- /UI/GMM_UBM_GUI.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/GMM_UBM_GUI.ui -------------------------------------------------------------------------------- /UI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/__init__.py -------------------------------------------------------------------------------- /UI/final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/final.py -------------------------------------------------------------------------------- /UI/final.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/final.ui -------------------------------------------------------------------------------- /UI/tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/UI/tmp.py -------------------------------------------------------------------------------- /VAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/VAD.py -------------------------------------------------------------------------------- /d_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/d_vector.py -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/demo.mp4 -------------------------------------------------------------------------------- /report/First.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/report/First.pdf -------------------------------------------------------------------------------- /report/GMM_UBM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/report/GMM_UBM.pdf -------------------------------------------------------------------------------- /report/final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/report/final.pdf -------------------------------------------------------------------------------- /report/mfcc报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/report/mfcc报告.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/utils/processing.py -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/utils/tools.py -------------------------------------------------------------------------------- /展示.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleinzcy/speech_signal_processing/HEAD/展示.pptx --------------------------------------------------------------------------------