├── LICENSE ├── README.md ├── audio ├── test_audio.mp4 └── test_audio2.wav ├── featureExtraction.py ├── image ├── TS_model.pdf └── TS_models.png ├── melodyExtraction_NS.py ├── model.py ├── randAudioAugment.py ├── results ├── pitch_test_audio_file.mp4.txt └── pitch_test_audio_file2.wav.txt ├── weights └── ResNet_NS.hdf5 ├── x_data_mean_total_31.npy └── x_data_std_total_31.npy /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/README.md -------------------------------------------------------------------------------- /audio/test_audio.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/audio/test_audio.mp4 -------------------------------------------------------------------------------- /audio/test_audio2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/audio/test_audio2.wav -------------------------------------------------------------------------------- /featureExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/featureExtraction.py -------------------------------------------------------------------------------- /image/TS_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/image/TS_model.pdf -------------------------------------------------------------------------------- /image/TS_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/image/TS_models.png -------------------------------------------------------------------------------- /melodyExtraction_NS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/melodyExtraction_NS.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/model.py -------------------------------------------------------------------------------- /randAudioAugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/randAudioAugment.py -------------------------------------------------------------------------------- /results/pitch_test_audio_file.mp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/results/pitch_test_audio_file.mp4.txt -------------------------------------------------------------------------------- /results/pitch_test_audio_file2.wav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/results/pitch_test_audio_file2.wav.txt -------------------------------------------------------------------------------- /weights/ResNet_NS.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/weights/ResNet_NS.hdf5 -------------------------------------------------------------------------------- /x_data_mean_total_31.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/x_data_mean_total_31.npy -------------------------------------------------------------------------------- /x_data_std_total_31.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keums/melodyExtraction_SSL/HEAD/x_data_std_total_31.npy --------------------------------------------------------------------------------