├── Audio_Segment.py ├── CNN_BiDirectional.py ├── CNN_Model.py ├── Feature_Extraction.py ├── Major Thesis_(Final).pdf ├── Plot_Audio.py ├── Plot_CM.py ├── README.md ├── Read_file.py ├── Research Paper-IJITEE.pdf ├── Result and Output ├── .gitkeep ├── MFCC │ ├── .gitkeep │ ├── CNN BGRU │ │ ├── CNN_BGRU.JPG │ │ ├── CNN_BGRU_CM.JPG │ │ └── CNN_BGRU_Tr_Ts_Acc.JPG │ ├── CNN BLSTM │ │ ├── CNN_BLSTM.JPG │ │ ├── CNN_BLSTM_CM.JPG │ │ └── CNN_BLSTM_Tr_Ts_Acc.JPG │ ├── CNN GRU │ │ ├── CNN_GRU.JPG │ │ ├── CNN_GRU_CM.JPG │ │ └── CNN_GRU_Tr_Ts_Acc.JPG │ ├── CNN LSTM │ │ ├── CNN_LSTM.JPG │ │ ├── CNN_LSTM_CM.JPG │ │ └── CNN_LSTM_Tr_Ts_Acc.JPG │ └── CNN │ │ ├── CNN.JPG │ │ ├── CNN_CM.JPG │ │ └── CNN_Tr_Ts_Acc.JPG ├── MelSpectrogram │ ├── .gitkeep │ ├── CNN │ │ ├── CNN BGRU │ │ │ ├── CNN_BGRU_3.JPG │ │ │ ├── CNN_BGRU_CM.JPG │ │ │ └── CNN_BGRU_Tr_Ts_Acc.JPG │ │ ├── CNN BLSTM │ │ │ ├── CNN_BLSTM_4.JPG │ │ │ ├── CNN_BLSTM_CM.JPG │ │ │ └── CNN_BLSTM_Tr_Ts_Acc.JPG │ │ ├── CNN GRU │ │ │ ├── CNN_GRU_5.JPG │ │ │ ├── CNN_GRU_CM.JPG │ │ │ └── CNN_GRU_Tr_Ts_Acc.JPG │ │ ├── CNN LSTM │ │ │ ├── CNN_LSTM.JPG │ │ │ ├── CNN_LSTM_2.JPG │ │ │ ├── CNN_LSTM_2_CM.JPG │ │ │ ├── CNN_LSTM_2_Tr_Ts_Acc.JPG │ │ │ ├── CNN_LSTM_CM.JPG │ │ │ └── CNN_LSTM_Tr_Ts_Acc.JPG │ │ └── CNN │ │ │ ├── CM_Tr_Ts_Acc.JPG │ │ │ ├── CNN.JPG │ │ │ └── CNN_CM.JPG │ └── VGG16 │ │ ├── VGG16 BGRU │ │ ├── VGG16_BGRU.JPG │ │ ├── VGG16_BGRU_CM.JPG │ │ └── VGG16_BGRU_Tr_Ts_Acc.JPG │ │ ├── VGG16 BLSTM │ │ ├── VGG16_BLSTM.JPG │ │ ├── VGG16_BLSTM_CM.JPG │ │ └── VGG16_BLSTM_Tr_Ts_Acc.JPG │ │ ├── VGG16 GRU │ │ ├── VGG16_GRU.JPG │ │ ├── VGG16_GRU_CM.JPG │ │ └── VGG16_GRU_Tr_Ts_Acc.JPG │ │ ├── VGG16 LSTM │ │ ├── VGG16_LSTM.JPG │ │ ├── VGG16_LSTM_CM.JPG │ │ └── VGG16_LSTM_Tr_Ts_Acc.JPG │ │ └── VGG16 │ │ ├── VGG16.JPG │ │ ├── VGG16_CM.JPG │ │ └── VGG16_Tr_Ts_Acc.JPG └── STFT │ ├── .gitkeep │ ├── CNN BGRU │ ├── CNN_BGRU.JPG │ ├── CNN_BGRU_CM.JPG │ └── CNN_BGRU_Tr_Ts_Acc.JPG │ ├── CNN BLSTM │ ├── CNN_BLSTM.JPG │ ├── CNN_BLSTM_CM.JPG │ └── CNN_BLSTM_Tr_Ts_Acc.JPG │ ├── CNN GRU │ ├── CNN_GRU.JPG │ ├── CNN_GRU_CM.JPG │ └── CNN_GRU_Tr_Ts_Acc.JPG │ ├── CNN LSTM │ ├── CNN_LSTM.JPG │ ├── CNN_LSTM_CM.JPG │ └── CNN_LSTM_Tr_Ts_Acc.JPG │ └── CNN │ ├── CNN.JPG │ ├── CNN_1.JPG │ ├── CNN_CM.JPG │ ├── CNN_CM_1.JPG │ ├── CNN_Tr_Ts_Acc.JPG │ ├── CNN_Tr_Ts_Acc_1.JPG │ └── README.md ├── Split_Data.py ├── VGG16_BiDirectional.py ├── VGG16_Model.py └── Waveform.py /Audio_Segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Audio_Segment.py -------------------------------------------------------------------------------- /CNN_BiDirectional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/CNN_BiDirectional.py -------------------------------------------------------------------------------- /CNN_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/CNN_Model.py -------------------------------------------------------------------------------- /Feature_Extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Feature_Extraction.py -------------------------------------------------------------------------------- /Major Thesis_(Final).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Major Thesis_(Final).pdf -------------------------------------------------------------------------------- /Plot_Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Plot_Audio.py -------------------------------------------------------------------------------- /Plot_CM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Plot_CM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/README.md -------------------------------------------------------------------------------- /Read_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Read_file.py -------------------------------------------------------------------------------- /Research Paper-IJITEE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Research Paper-IJITEE.pdf -------------------------------------------------------------------------------- /Result and Output/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Result and Output/MFCC/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BGRU/CNN_BGRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BGRU/CNN_BGRU.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BGRU/CNN_BGRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BGRU/CNN_BGRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BLSTM/CNN_BLSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BLSTM/CNN_BLSTM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BLSTM/CNN_BLSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BLSTM/CNN_BLSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN GRU/CNN_GRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN GRU/CNN_GRU.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN GRU/CNN_GRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN GRU/CNN_GRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN LSTM/CNN_LSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN LSTM/CNN_LSTM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN LSTM/CNN_LSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN LSTM/CNN_LSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN/CNN.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN/CNN.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN/CNN_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN/CNN_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MFCC/CNN/CNN_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MFCC/CNN/CNN_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_3.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_4.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_5.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_2_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN/CM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN/CM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN/CNN.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN/CNN.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/CNN/CNN/CNN_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/CNN/CNN/CNN_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BGRU/VGG16_BGRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 BLSTM/VGG16_BLSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 GRU/VGG16_GRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16 LSTM/VGG16_LSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16/VGG16.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16/VGG16.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16/VGG16_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16/VGG16_CM.JPG -------------------------------------------------------------------------------- /Result and Output/MelSpectrogram/VGG16/VGG16/VGG16_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/MelSpectrogram/VGG16/VGG16/VGG16_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BGRU/CNN_BGRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BGRU/CNN_BGRU.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BGRU/CNN_BGRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BGRU/CNN_BGRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BGRU/CNN_BGRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BLSTM/CNN_BLSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BLSTM/CNN_BLSTM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BLSTM/CNN_BLSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BLSTM/CNN_BLSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN BLSTM/CNN_BLSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN GRU/CNN_GRU.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN GRU/CNN_GRU.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN GRU/CNN_GRU_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN GRU/CNN_GRU_CM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN GRU/CNN_GRU_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN LSTM/CNN_LSTM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN LSTM/CNN_LSTM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN LSTM/CNN_LSTM_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN LSTM/CNN_LSTM_CM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN LSTM/CNN_LSTM_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN_1.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN_CM.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN_CM.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN_CM_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN_CM_1.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN_Tr_Ts_Acc.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN_Tr_Ts_Acc.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/CNN_Tr_Ts_Acc_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/CNN_Tr_Ts_Acc_1.JPG -------------------------------------------------------------------------------- /Result and Output/STFT/CNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Result and Output/STFT/CNN/README.md -------------------------------------------------------------------------------- /Split_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Split_Data.py -------------------------------------------------------------------------------- /VGG16_BiDirectional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/VGG16_BiDirectional.py -------------------------------------------------------------------------------- /VGG16_Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/VGG16_Model.py -------------------------------------------------------------------------------- /Waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahilsharma884/Music-Genre-Classification/HEAD/Waveform.py --------------------------------------------------------------------------------