Maximum-entropy Markov model

From HandWiki

In statistics, a maximum-entropy Markov model (MEMM), or conditional Markov model (CMM), is a graphical model for sequence labeling that combines features of hidden Markov models (HMMs) and maximum entropy (MaxEnt) models. An MEMM is a discriminative model that extends a standard maximum entropy classifier by assuming that the unknown values to be learnt are connected in a Markov chain rather than being conditionally independent of each other. MEMMs find applications in natural language processing, specifically in part-of-speech tagging[1] and information extraction.[2]

Model

Suppose we have a sequence of observations [math]\displaystyle{ O_1, \dots, O_n }[/math] that we seek to tag with the labels [math]\displaystyle{ S_1, \dots, S_n }[/math]that maximize the conditional probability [math]\displaystyle{ P(S_1, \dots, S_n \mid O_1, \dots, O_n) }[/math]. In a MEMM, this probability is factored into Markov transition probabilities, where the probability of transitioning to a particular label depends only on the observation at that position and the previous position's label[citation needed]:

[math]\displaystyle{ P(S_1, \dots, S_n \mid O_1, \dots, O_n) = \prod_{t = 1}^nP(S_t \mid S_{t-1},O_t). }[/math]

Each of these transition probabilities comes from the same general distribution [math]\displaystyle{ P(s\mid s',o) }[/math]. For each possible label value of the previous label [math]\displaystyle{ s' }[/math], the probability of a certain label [math]\displaystyle{ s }[/math] is modeled in the same way as a maximum entropy classifier:[3]

[math]\displaystyle{ P(s\mid s',o) = P_{s'}(s\mid o) = \frac{1}{Z(o,s')} \exp \left( \sum_a \lambda_a f_a(o,s)\right). }[/math]

Here, the [math]\displaystyle{ f_a(o,s) }[/math] are real-valued or categorical feature-functions, and [math]\displaystyle{ Z(o,s') }[/math] is a normalization term ensuring that the distribution sums to one. This form for the distribution corresponds to the maximum entropy probability distribution satisfying the constraint that the empirical expectation for the feature is equal to the expectation given the model:

[math]\displaystyle{ \operatorname{E}_e\left[f_a(o,s)\right] = \operatorname{E}_p\left[f_a(o,s)\right] \quad \text{ for all } a . }[/math]

The parameters [math]\displaystyle{ \lambda_a }[/math] can be estimated using generalized iterative scaling.[4] Furthermore, a variant of the Baum–Welch algorithm, which is used for training HMMs, can be used to estimate parameters when training data has incomplete or missing labels.[2]

The optimal state sequence [math]\displaystyle{ S_1, \dots, S_n }[/math] can be found using a very similar Viterbi algorithm to the one used for HMMs. The dynamic program uses the forward probability:

[math]\displaystyle{ \alpha_{t+1}(s) = \sum_{s' \in S} \alpha_t(s') P_{s'}(s\mid o_{t+1}). }[/math]

Strengths and weaknesses

An advantage of MEMMs rather than HMMs for sequence tagging is that they offer increased freedom in choosing features to represent observations. In sequence tagging situations, it is useful to use domain knowledge to design special-purpose features. In the original paper introducing MEMMs, the authors write that "when trying to extract previously unseen company names from a newswire article, the identity of a word alone is not very predictive; however, knowing that the word is capitalized, that is a noun, that it is used in an appositive, and that it appears near the top of the article would all be quite predictive (in conjunction with the context provided by the state-transition structure)."[2] Useful sequence tagging features, such as these, are often non-independent. Maximum entropy models do not assume independence between features, but generative observation models used in HMMs do.[2] Therefore, MEMMs allow the user to specify many correlated, but informative features.

Another advantage of MEMMs versus HMMs and conditional random fields (CRFs) is that training can be considerably more efficient. In HMMs and CRFs, one needs to use some version of the forward–backward algorithm as an inner loop in training[citation needed]. However, in MEMMs, estimating the parameters of the maximum-entropy distributions used for the transition probabilities can be done for each transition distribution in isolation.

A drawback of MEMMs is that they potentially suffer from the "label bias problem," where states with low-entropy transition distributions "effectively ignore their observations." Conditional random fields were designed to overcome this weakness,[5] which had already been recognised in the context of neural network-based Markov models in the early 1990s.[5][6] Another source of label bias is that training is always done with respect to known previous tags, so the model struggles at test time when there is uncertainty in the previous tag.

References

  1. Toutanova, Kristina; Manning, Christopher D. (2000). "Enriching the Knowledge Sources Used in a Maximum Entropy Part-of-Speech Tagger". pp. 63–70. 
  2. 2.0 2.1 2.2 2.3 McCallum, Andrew; Freitag, Dayne; Pereira, Fernando (2000). "Maximum Entropy Markov Models for Information Extraction and Segmentation". pp. 591–598. http://www.ai.mit.edu/courses/6.891-nlp/READINGS/maxent.pdf. 
  3. Berger, A.L. and Pietra, V.J.D. and Pietra, S.A.D. (1996). "A maximum entropy approach to natural language processing". Computational Linguistics (MIT Press) 22 (1): 39–71. 
  4. Darroch, J.N.; Ratcliff, D. (1972). "Generalized iterative scaling for log-linear models". The Annals of Mathematical Statistics (Institute of Mathematical Statistics) 43 (5): 1470–1480. doi:10.1214/aoms/1177692379. http://projecteuclid.org/download/pdf_1/euclid.aoms/1177692379. 
  5. 5.0 5.1 Lafferty, John; McCallum, Andrew; Pereira, Fernando (2001). "Conditional Random Fields: Probabilistic Models for Segmenting and Labeling Sequence Data". 
  6. Léon Bottou (1991). Une Approche théorique de l'Apprentissage Connexionniste: Applications à la Reconnaissance de la Parole (Ph.D.). Université de Paris XI.