Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the state-of-the-art in unsupervised learning on temporal data?

I'm looking for an overview of the state-of-the-art methods that

  • find temporal patterns (of arbitrary length) in temporal data

  • and are unsupervised (no labels).

In other words, given a steam/sequence of (potentially high-dimensional) data, how do you find those common subsequences that best capture the structure in the data.

  1. Any pointers to recent developments or papers (that go beyond HMMs, hopefully) are welcome!

  2. Is this problem maybe well-understood in a more specific application domain, like

    • motion capture
    • speech processing
    • natural language processing
    • game action sequences
    • stock market prediction?

  3. In addition, are some of these methods general enough to deal with
    • highly noisy data
    • hierarchical structure
    • irregularly spacing on time axis

(I'm not interested in detecting known patterns, nor in classifying or segmenting the sequences.)

like image 700
schaul Avatar asked Aug 07 '12 21:08

schaul


1 Answers

There has been a lot of recent emphasis on non-parametric HMMs, extensions to infinite state spaces, as well as factorial models, explaining an observation using a set of factors rather than a single mixture component.

Here are some interesting papers to start with (just google the paper names):

  • "Beam Sampling for the Infinite Hidden Markov Model"
  • "The Infinite Factorial Hidden Markov Model"
  • "Bayesian Nonparametric Inference of Switching Dynamic Linear Models"
  • "Sharing features among dynamical systems with beta processes"

The experiments sections these papers discuss applications in text modeling, speaker diarization, and motion capture, among other things.

like image 183
user1149913 Avatar answered Nov 25 '22 15:11

user1149913