├── README.md ├── WFST_exe.py ├── all.sh ├── classify.py ├── data_preprocessing ├── get_ngramlogp.py ├── get_timit_answer.py ├── move_wav.py ├── n_gram_feat_gen.py ├── n_gram_label_gen.py ├── others_mapping │ ├── 48_idx_chr.map │ ├── Makefile │ ├── hw2_upload_generator.py │ ├── kaggle.out │ ├── kaggle.out_correct │ ├── label2seq.py │ ├── map2phone.py │ ├── map_to_their_map.py │ ├── phone_to_seq.py │ └── predict_results_ori ├── standardization.py ├── test_sentenceid_generator.py └── test_std.py ├── del_curve.py ├── ensemble_dnn_model ├── by_prob.py ├── by_vote.py ├── by_weight.py ├── classify.py ├── getAccu.py └── model.list ├── extract_feature.py ├── getSentence.py ├── hw2_upload_generator.py ├── nbest_test.py ├── ngram.py ├── phone_to_seq.py ├── report.docx ├── rescore.py └── trim4WFST.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/README.md -------------------------------------------------------------------------------- /WFST_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/WFST_exe.py -------------------------------------------------------------------------------- /all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/all.sh -------------------------------------------------------------------------------- /classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/classify.py -------------------------------------------------------------------------------- /data_preprocessing/get_ngramlogp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/get_ngramlogp.py -------------------------------------------------------------------------------- /data_preprocessing/get_timit_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/get_timit_answer.py -------------------------------------------------------------------------------- /data_preprocessing/move_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/move_wav.py -------------------------------------------------------------------------------- /data_preprocessing/n_gram_feat_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/n_gram_feat_gen.py -------------------------------------------------------------------------------- /data_preprocessing/n_gram_label_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/n_gram_label_gen.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/48_idx_chr.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/48_idx_chr.map -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/Makefile -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/hw2_upload_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/hw2_upload_generator.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/kaggle.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/kaggle.out -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/kaggle.out_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/kaggle.out_correct -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/label2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/label2seq.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/map2phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/map2phone.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/map_to_their_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/map_to_their_map.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/phone_to_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/phone_to_seq.py -------------------------------------------------------------------------------- /data_preprocessing/others_mapping/predict_results_ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/others_mapping/predict_results_ori -------------------------------------------------------------------------------- /data_preprocessing/standardization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/standardization.py -------------------------------------------------------------------------------- /data_preprocessing/test_sentenceid_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/test_sentenceid_generator.py -------------------------------------------------------------------------------- /data_preprocessing/test_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/data_preprocessing/test_std.py -------------------------------------------------------------------------------- /del_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/del_curve.py -------------------------------------------------------------------------------- /ensemble_dnn_model/by_prob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/by_prob.py -------------------------------------------------------------------------------- /ensemble_dnn_model/by_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/by_vote.py -------------------------------------------------------------------------------- /ensemble_dnn_model/by_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/by_weight.py -------------------------------------------------------------------------------- /ensemble_dnn_model/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/classify.py -------------------------------------------------------------------------------- /ensemble_dnn_model/getAccu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/getAccu.py -------------------------------------------------------------------------------- /ensemble_dnn_model/model.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ensemble_dnn_model/model.list -------------------------------------------------------------------------------- /extract_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/extract_feature.py -------------------------------------------------------------------------------- /getSentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/getSentence.py -------------------------------------------------------------------------------- /hw2_upload_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/hw2_upload_generator.py -------------------------------------------------------------------------------- /nbest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/nbest_test.py -------------------------------------------------------------------------------- /ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/ngram.py -------------------------------------------------------------------------------- /phone_to_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/phone_to_seq.py -------------------------------------------------------------------------------- /report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/report.docx -------------------------------------------------------------------------------- /rescore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/rescore.py -------------------------------------------------------------------------------- /trim4WFST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changjenyin/DNN_HMM_RNN_speech/HEAD/trim4WFST.py --------------------------------------------------------------------------------