Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

In "Convolutional deep belief networks for scalable unsupervised learning of hierarchical representations" by Lee et. al.(PDF) Convolutional DBN's are proposed. Also the method is evaluated for image classification. This sounds logical, as there are natural local image features, like small corners and edges etc.

In "Unsupervised feature learning for audio classification using convolutional deep belief networks" by Lee et. al. this method is applied for audio in different types of classifications. Speaker identification, gender indentification, phone classification and also some music genre / artist classification.

How can the convolutional part of this network be interpreted for audio, like it can be explained for images as edges?

share|improve this question
The question is interesting. The typos make it hard to read. – Ivo Danihelka Jul 24 '10 at 9:24
@Ivo I am sorry, there were a lot of mistakes indeed. I corrected a lot of them. – Peter Smit Jul 24 '10 at 9:40
Who have the code for the paper? – user13224 Aug 11 '12 at 11:19

2 Answers

The audio application is a one-dimensional simplification of the two-dimensional image classification problem. A phoneme (for example) is the audio analog of an image feature such as an edge or a circle. In either case such features have an essential locality: they are characterized by values within a relatively small neighborhood of an image location or moment of speech. Convolutions are a controlled, regular form of weighted averaging of values within local neighborhoods. From this originates the hope that a convolutional form of a DBN can be successful at identifying and discriminating features that are meaningful.

share|improve this answer
1  
Great answer! Thanks! – Peter Smit Nov 1 '10 at 4:12

In case of Convolutional RBM's applied to audio data, the authors have first taken Short Term Fourier Transform and then defined energy bands on the spectrum. Then they have applied convolutional RBM's on that transformed audio.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.