├── 4_CNN_main.py ├── LICENSE ├── README.md ├── app.py ├── aux_label_distribution.py ├── aux_layer_to_image_enhancement.py ├── aux_test_spectro.py ├── aux_word2vec.py ├── config.py ├── converters.py ├── extractors.py ├── images ├── CNN_architecture.png ├── Recall.png ├── accuracy.png ├── results.png ├── t_SNE.png └── waves_spectro_logspectro.png ├── mp3_to_wav.sh ├── requirements.txt └── utils ├── extract_mfcc_from_wav.py ├── fft.py └── utils.py /4_CNN_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/4_CNN_main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/app.py -------------------------------------------------------------------------------- /aux_label_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/aux_label_distribution.py -------------------------------------------------------------------------------- /aux_layer_to_image_enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/aux_layer_to_image_enhancement.py -------------------------------------------------------------------------------- /aux_test_spectro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/aux_test_spectro.py -------------------------------------------------------------------------------- /aux_word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/aux_word2vec.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/config.py -------------------------------------------------------------------------------- /converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/converters.py -------------------------------------------------------------------------------- /extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/extractors.py -------------------------------------------------------------------------------- /images/CNN_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/CNN_architecture.png -------------------------------------------------------------------------------- /images/Recall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/Recall.png -------------------------------------------------------------------------------- /images/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/accuracy.png -------------------------------------------------------------------------------- /images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/results.png -------------------------------------------------------------------------------- /images/t_SNE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/t_SNE.png -------------------------------------------------------------------------------- /images/waves_spectro_logspectro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/images/waves_spectro_logspectro.png -------------------------------------------------------------------------------- /mp3_to_wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/mp3_to_wav.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/extract_mfcc_from_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/utils/extract_mfcc_from_wav.py -------------------------------------------------------------------------------- /utils/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/utils/fft.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarkou/Audio-auto-tagging/HEAD/utils/utils.py --------------------------------------------------------------------------------