Effacer les filtres
Effacer les filtres

Classifying environmental sounds using AlexNet

4 vues (au cours des 30 derniers jours)
Ibrahim A
Ibrahim A le 10 Juin 2020
Commenté : Ibrahim A le 23 Juin 2020
I am trying to extract Spectrograms and MFCC from audio files then calssify them using AlexNet or GooglNet. Any tips ?

Réponse acceptée

Utkarsh
Utkarsh le 19 Juin 2020
Hi Ibrahim,
For classification of spectrogram with alexnet, you might wish to train the last layers of alexnet according to your dataset (spectrograms of audio). For more details about transfer learning with alexnet refer here.
You may also refer here for an approach without alexnet.
  3 commentaires
Utkarsh
Utkarsh le 19 Juin 2020
Modifié(e) : Utkarsh le 19 Juin 2020
You may refer here for documentation on how to create a spectrogram for an audio
Have you tried this for saving the spectrogram? (It will save the spectrogram without any border,label,etc)
s = spectrogram(x); %x contains the loaded audio in an array
spectrogram(x,'yaxis')
set(gca, 'Visible', 'off');
colorbar('off');
saveas(gcf,'file_name.png')
Ibrahim A
Ibrahim A le 23 Juin 2020
Thank you Utkarsh

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Image Data Workflows dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by