├── .gitignore ├── README.md ├── change_dir.py ├── data.py ├── dataset ├── Gammatone_Filter_Order4.raw ├── TEST_coreset_list.csv ├── TEST_developmentset_list.csv └── TRAIN_list.csv ├── feature ├── melspectrogram.py ├── melspectrogram_multiprocessing.py ├── mfcc.py ├── mfcc_multiprocessing.py ├── spectrogram.py ├── spectrogram_multiprocessing.py ├── spikegram.py └── spikegram_multiprocessing.py ├── input └── 126_spike_deltadelta_mstd.csv ├── logger.py ├── model ├── Model.py ├── Solver.py └── model.txt ├── output └── output.txt ├── result.py ├── run_melspectrogram.py ├── run_mfcc.py ├── run_spectrogram.py ├── run_spikegram.py ├── timit_list.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/README.md -------------------------------------------------------------------------------- /change_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/change_dir.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/data.py -------------------------------------------------------------------------------- /dataset/Gammatone_Filter_Order4.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/dataset/Gammatone_Filter_Order4.raw -------------------------------------------------------------------------------- /dataset/TEST_coreset_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/dataset/TEST_coreset_list.csv -------------------------------------------------------------------------------- /dataset/TEST_developmentset_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/dataset/TEST_developmentset_list.csv -------------------------------------------------------------------------------- /dataset/TRAIN_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/dataset/TRAIN_list.csv -------------------------------------------------------------------------------- /feature/melspectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/melspectrogram.py -------------------------------------------------------------------------------- /feature/melspectrogram_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/melspectrogram_multiprocessing.py -------------------------------------------------------------------------------- /feature/mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/mfcc.py -------------------------------------------------------------------------------- /feature/mfcc_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/mfcc_multiprocessing.py -------------------------------------------------------------------------------- /feature/spectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/spectrogram.py -------------------------------------------------------------------------------- /feature/spectrogram_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/spectrogram_multiprocessing.py -------------------------------------------------------------------------------- /feature/spikegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/spikegram.py -------------------------------------------------------------------------------- /feature/spikegram_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/feature/spikegram_multiprocessing.py -------------------------------------------------------------------------------- /input/126_spike_deltadelta_mstd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/input/126_spike_deltadelta_mstd.csv -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/logger.py -------------------------------------------------------------------------------- /model/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/model/Model.py -------------------------------------------------------------------------------- /model/Solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/model/Solver.py -------------------------------------------------------------------------------- /model/model.txt: -------------------------------------------------------------------------------- 1 | model directory -------------------------------------------------------------------------------- /output/output.txt: -------------------------------------------------------------------------------- 1 | output directory -------------------------------------------------------------------------------- /result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/result.py -------------------------------------------------------------------------------- /run_melspectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/run_melspectrogram.py -------------------------------------------------------------------------------- /run_mfcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/run_mfcc.py -------------------------------------------------------------------------------- /run_spectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/run_spectrogram.py -------------------------------------------------------------------------------- /run_spikegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/run_spikegram.py -------------------------------------------------------------------------------- /timit_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/timit_list.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanSeokhyeon/Deep_learning_for_Phoneme_recognition/HEAD/util.py --------------------------------------------------------------------------------