Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>To clarify a couple points, as I disagree with the Wikipedia characterization of the Forward algorithm (see Durbin):</p> <p>Forward (and separately, Backward) are used to compute the probability of a sequence of observations/emissions when the state path is not known, and moreover, to compute that probability much more efficiently than the naive approach (which very quickly ends up in a combinatoric explosion). Together, they can provide the probability of a given emission/observation at each position in the sequence of observations. It is from this information that a version of the most likely state path is computed ("posterior decoding"). The Viterbi algorithm calculates another version of the most likely state path.</p> <p>Indeed, a good implementation of either Forward or Backward will save you mountains of time when compared with the bother of computing the probability for the given sequence w.r.t. <strong>every</strong> other state path.</p> <p>You will see these applied in any context that you want to separate the states which the system can be in, from the observables that you can measure about the system. The most employable (and complex) are probably finance problems. Simplistically, say your state paths are composed of elements from [Bull, Bear] and that you've posterior decoded state paths from the VIX or something for the last several months at a resolution relevant to the kind of commercial / geopolitical events you're trying to capture. This kind of computation can be used to train your model as you receive new and more data (through Baum-Welch or a more general EM algorithm), and Forward will tell you when the data that you're getting (your real time sequence of observations) becomes very low in probability relative to what you'd expect from your model (as trained up to that point). Statistically speaking, that's when you buy or sell.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload