├── .gitignore ├── INSTALLATION.md ├── LICENSE ├── README.md ├── extract_features.py ├── feature_extraction_scripts ├── errors.py ├── feature_extraction_functions.py ├── organize_speech_data.py └── prep_noise.py ├── implement_model.py ├── model_scripts ├── build_model.py └── generator_speech_CNN_LSTM.py ├── requirements.txt ├── requirements_implementmodel.txt ├── train_models_CNN_LSTM_CNNLSTM.py └── visualize_features.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/README.md -------------------------------------------------------------------------------- /extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/extract_features.py -------------------------------------------------------------------------------- /feature_extraction_scripts/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/feature_extraction_scripts/errors.py -------------------------------------------------------------------------------- /feature_extraction_scripts/feature_extraction_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/feature_extraction_scripts/feature_extraction_functions.py -------------------------------------------------------------------------------- /feature_extraction_scripts/organize_speech_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/feature_extraction_scripts/organize_speech_data.py -------------------------------------------------------------------------------- /feature_extraction_scripts/prep_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/feature_extraction_scripts/prep_noise.py -------------------------------------------------------------------------------- /implement_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/implement_model.py -------------------------------------------------------------------------------- /model_scripts/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/model_scripts/build_model.py -------------------------------------------------------------------------------- /model_scripts/generator_speech_CNN_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/model_scripts/generator_speech_CNN_LSTM.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_implementmodel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/requirements_implementmodel.txt -------------------------------------------------------------------------------- /train_models_CNN_LSTM_CNNLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/train_models_CNN_LSTM_CNNLSTM.py -------------------------------------------------------------------------------- /visualize_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-n-rose/Build-CNN-or-LSTM-or-CNNLSTM-with-speech-features/HEAD/visualize_features.py --------------------------------------------------------------------------------