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.

I'm looking for a way to model and extract features from multivariate temporal data (e.g., multi-channel audio recordings).

I'm specifically interested in deep learning methods such as RBM, sparse autoencoders and so on.

Most methods I encountered consider only one dimension of the data, or maybe a 2D "block" in the data (usually images).

I couldn't find a paper on how to take into consideration the temporal aspect and also the multivariate aspect. For example if I'm recording audio from multiple channels, then I know that the channels are probably correlated to some degree. Also, since it's an evolving temporal signal, there is also some correlation of each sample to the previous samples.

Is there some way to incorporate these multivariate temporal constraints into a network?

I'm looking for specific papers on methods for multivariate temporal where the multi-channel structure is used.

Thanks.

share|improve this question

2 Answers

up vote 2 down vote accepted

I also agree with Ran, most of the deep learning techniques are tested with image data set. Please checkout this research paper, it talks about audio classification using deep learning techniques.

share|improve this answer
I actually know this paper. They are converting their 1D temporal signal to a 2D frequency X time matrix with a spectrogram and the used 1D "filters" for the connections to the hidden units. It doesn't seem like they are looking at the frequency-time structure. Am I wrong? – Ran Feb 15 '12 at 15:15

There are multiple papers by Hinton et al. which deal with temporal data and also audio (http://www.cs.toronto.edu/~hinton/papers.html). For example:

  • Acoustic Modeling using Deep Belief Networks, 2012.
  • Learning a better Representation of Speech Sound Waves using Restricted Boltzmann Machines, 2011.
  • Deep Belief Networks using Discriminative Features for Phone Recognition, 2011. The Recurrent Temporal Restricted Boltzmann Machine, 2009.
  • Factored Conditional Restricted Boltzmann Machines for Modeling Motion Style, 2009.

I haven't read the more recent papers, but the 2009 papers should give you a good sense of how temporal data can be modeled using RBMs and DBNs.

share|improve this answer
My question was specific for multivariate temporal data, not a single channel temporal data (like those papers). thanks. – Ran Feb 16 '12 at 9:46
2  
I probably misunderstand your use of the term multivariate, but as I see it these papers do model multivariate temporal data. For example, the model described in the last paper was used to model motion capture data, where at each point in time you have multiple measurements. Unless you can make some specific independence assumptions about your channels, I don't see why couldn't model them in the same manner. Please clarify. – Lucas Feb 16 '12 at 10:02

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.