1 / 28

Hidden Markov Models

Hidden Markov Models. Ankur Jain Y7073. What is Covered. Observable Markov Model Hidden Markov Model Evaluation problem Decoding Problem. Markov Models. Set of states: Process moves from one state to another generating a sequence of states :

chill
Télécharger la présentation

Hidden Markov Models

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Hidden Markov Models Ankur Jain Y7073

  2. What is Covered • Observable Markov Model • Hidden Markov Model • Evaluation problem • Decoding Problem

  3. Markov Models • Set of states: • Process moves from one state to another generating a sequence of states : • Markov chain property: probability of each subsequent state depends only on what was the previous state: • To define Markov model, the following probabilities have to be specified: transition probabilities and initial probabilities • The output of the process is the set of states at each instant of time

  4. Calculation of sequence probability • By Markov chain property, probability of state sequence can be found by the formula:

  5. Example of Markov Model 0.3 0.7 Rain Dry 0.2 0.8 • Two states : ‘Rain’ and ‘Dry’. • Initial probabilities: say P(‘Rain’)=0.4 , P(‘Dry’)=0.6 • Suppose we want to calculate a probability of a sequence of states in our example, {‘Dry’,’Dry’,’Rain’,Rain’}. • P({‘Dry’,’Dry’,’Rain’,Rain’} ) = ??.

  6. Hidden Markov models. • The observation is turned to be a probabilistic function (discrete • or continuous) of a state instead of an one-to-one correspondence of a state • Each state randomly generates one of M observations (or visible states) • To define hidden Markov model, the following probabilities have to be specified: matrix of transition probabilities A=(aij), aij= P(si| sj) , matrix of observation probabilities B=(bi (vm )), bi(vm )= P(vm| si) and a vector of initial probabilities =(i), i= P(si) . Model is represented by M=(A, B, ).

  7. HMM Assumptions • Markov assumption: the state transition depends only on the origin and destination • Output-independent assumption: all observation frames are dependent on the state that generated them, not on neighbouring observation frames

  8. Example of Hidden Markov Model 0.3 0.7 Low High 0.2 0.8 Rain 0.6 0.6 0.4 0.4 Dry

  9. Example of Hidden Markov Model • Two states : ‘Low’ and ‘High’ atmospheric pressure. • Two observations : ‘Rain’ and ‘Dry’. • Transition probabilities: P(‘Low’|‘Low’)=0.3 , P(‘High’|‘Low’)=0.7 , P(‘Low’|‘High’)=0.2, P(‘High’|‘High’)=0.8 • Observation probabilities : P(‘Rain’|‘Low’)=0.6 , P(‘Dry’|‘Low’)=0.4 , P(‘Rain’|‘High’)=0.4 , P(‘Dry’|‘High’)=0.3 . • Initial probabilities: say P(‘Low’)=0.4 , P(‘High’)=0.6 .

  10. Calculation of observation sequence probability • Suppose we want to calculate a probability of a sequence of observations in our example, {‘Dry’,’Rain’}. • Consider all possible hidden state sequences: • P({‘Dry’,’Rain’} ) = P({‘Dry’,’Rain’} , {‘Low’,’Low’}) + P({‘Dry’,’Rain’} , {‘Low’,’High’}) + P({‘Dry’,’Rain’} , {‘High’,’Low’}) + P({‘Dry’,’Rain’} , {‘High’,’High’}) • where first term is : • P({‘Dry’,’Rain’} , {‘Low’,’Low’})= • P({‘Dry’,’Rain’} | {‘Low’,’Low’}) P({‘Low’,’Low’}) = ??

  11. Main issues using HMMs : • Evaluation problem. Given the HMM M=(A, B, ) and the observation sequence O=o1 o2 ... oK, calculate the probability that model M has generated sequence O . • Decoding problem. Given the HMM M=(A, B, ) and the observation sequence O=o1 o2 ... oK, calculate the most likely sequence of hidden states si that produced this observation sequence O. • Learning problem. Given some training observation sequences O=o1 o2 ... oK and general structure of HMM (numbers of hidden and visible states), adjust M=(A, B, ) to maximize the probability. • O=o1...oKdenotes a sequence of observations ok{v1,…,vM}.

  12. Word recognition example(1). Amherst a 0.5 0.03 b A c 0.005 0.31 z • Typed word recognition, assume all characters are separated. • Character recognizer outputs probability of the image being particular character, P(image|character). Hidden state Observation

  13. Word recognition example(2). • Hidden states of HMM = characters. • Observations = typed images of characters segmented from the image . Note that there is an infinite number of observations • Observation probabilities = character recognizer scores. • Transition probabilities will be defined differently in two subsequent models.

  14. Word recognition example(3). m a m r t h e s Buffalo b u a o f f l A • If lexicon is given, we can construct separate HMM models for each lexicon word. Amherst 0.03 0.5 0.4 0.6 • Here recognition of word image is equivalent to the problem of evaluating few HMM models. • This is an application of Evaluation problem.

  15. Word recognition example(4). a b v f o m r t h e s • We can construct a single HMM for all words. • Hidden states = all characters in the alphabet. • Transition probabilities and initial probabilities are calculated from language model. • Observations and observation probabilities are as before. • Here we have to determine the best sequence of hidden states, the one that most likely produced word image. • This is an application of Decoding problem.

  16. Evaluation Problem. • Evaluation problem. Given the HMM M=(A, B, ) and the observation sequence O=o1 o2 ... oT , calculate the probability that model M has generated sequence O . • Direct Evaluation :Trying to find probability of observations O=o1 o2 ... oT by means of considering all hidden state sequences • P(o1 o2 ... oT ) = P(o1 o2 ... oT, S ) {S is state sequence} • P(o1 o2 ... oT ) = P(o1 o2 ... oT /S ) P(S) • P(S) = {Markov property} • P(o1 o2 ... oT /S ) = {Output independent assumption}

  17. NT hidden state sequences - exponential complexity. • Use Forward-Backward HMM algorithms for efficient calculations. • Define the forward variable k(i) as the joint probability of the partial observation sequence o1 o2 ... ok and that the hidden state at time k is si : k(i)= P(o1 o2 ... ok , qk=si)

  18. Trellis representation of an HMM s1 sN s2 si sN s2 si s1 s1 s2 sj s1 s2 si sN sN o1 okok+1 oK = Observations a1j a2j aij aNj Time= 1 k k+1 K

  19. Forward recursion for HMM • Initialization: • 1(i)= P(o1 , q1=si) = ibi (o1) , 1<=i<=N. • Forward recursion: • k+1(j)= P(o1 o2 ... ok+1 , qk+1=sj) = • iP(o1 o2 ... ok+1 , qk=si, qk+1=sj) = • iP(o1 o2 ... ok , qk=si) aij bj (ok+1 ) = • [i k(i) aij ] bj (ok+1 ) , 1<=j<=N, 1<=k<=K-1. • Termination: • P(o1 o2 ... oK) = iP(o1 o2 ... oK , qK=si) = i K(i) • Complexity : • N2K operations.

  20. Backward recursion for HMM • Define the backward variable k(i) as the joint probability of the partial observation sequence ok+1 ok+2 ... oK given that the hidden state at time k is si : k(i)= P(ok+1 ok+2 ... oK |qk=si) • Initialization: • K(i)= 1 , 1<=i<=N. • Backward recursion: • k(j)= P(ok+1 ok+2 ... oK |qk=sj) = • iP(ok+1 ok+2 ... oK , qk+1=si|qk=sj) = • iP(ok+2 ok+3 ... oK |qk+1=si) aji bi (ok+1 ) = • i k+1(i) aji bi (ok+1 ) , 1<=j<=N, 1<=k<=K-1. • Termination: • P(o1 o2 ... oK) = iP(o1 o2 ... oK , q1=si) = • iP(o1 o2 ... oK |q1=si) P(q1=si) = i 1(i) bi (o1) i

  21. k(i) k(i) = P(o1 o2 ... oK , qk=si) • P(o1 o2 ... oK) = ik(i) k(i)

  22. Decoding problem • We want to find the state sequence Q= q1…qK which maximizes P(Q | o1 o2 ... oK ) , or equivalently P(Q , o1 o2 ... oK ) . • Brute force consideration of all paths takes exponential time. Use efficient Viterbi algorithm instead. • Define variable k(i) as the maximum probability of producing observation sequence o1 o2 ... ok when moving along any hidden state sequence q1… qk-1 and getting into qk= si . • k(i) = max P(q1… qk-1 ,qk= si,o1 o2 ... ok) • where max is taken over all possible paths q1… qk-1 .

  23. Viterbi algorithm (1) s1 si sN sj qk-1 qk a1j aij aNj • General idea: • if best path ending in qk= sjgoes through qk-1= sithen it should coincide with best path ending in qk-1= si. • k(i) = max P(q1… qk-1 ,qk= sj,o1 o2 ... ok) = • maxi [ aij bj (ok ) max P(q1… qk-1= si,o1 o2 ... ok-1) ] • To backtrack best path keep info that predecessor of sj was si.

  24. Viterbi algorithm (2) • Initialization: • 1(i) = max P(q1= si,o1) = ibi (o1) , 1<=i<=N. • Forward recursion: • k(j) = max P(q1… qk-1 ,qk= sj,o1 o2 ... ok) = • maxi [ aij bj (ok ) max P(q1… qk-1= si,o1 o2 ... ok-1) ]= • maxi [ aij bj (ok ) k-1(i) ] , 1<=j<=N, 2<=k<=K. • Termination: choose best path ending at time K • maxi [ K(i) ] • Backtrack best path. This algorithm is similar to the forward recursion of evaluation problem, with  replaced by max and additional backtracking.

  25. Learning problem • The most difficult of the three problems, because there is no known analytical method that maximizes the joint probability of the training data • Solved by the Baum-Welch (known as forward backward) algorithm and EM (Expectation maximization) algorithm

  26. HMM & Neural network • Predicting the Protein Structures • Fault detection in ground antenna

  27. Questions • What is hidden in HMM?? • How many states do I think my model needs? • How many possible observations do I think there are? • What kind of topology do I think my state transition graph should have?

  28. Thank You

More Related