Learn Before
Formula
Derivation of Most Probable HMM Tag Sequence
By Bayes' rule, the most probable tag sequence for an observation sequence of words is:
= argmax_{t_1, ..., t_n} P(w_1...w_n|t_1...t_n)P(t_1...t_n)
HMM taggers make two simplifying assumptions:
- The probability of a word appearing depends only on its own tag and is independent of neighboring words and tags:
- The probability of a tag is dependent only on the previous tag, rather than the entire tag sequence:
Hence, it follows that:
The two parts of this equation correspond to the emission probability and the transition probability, respectively.
0
1
Updated 2026-06-14
Contributors are:
Who are from:
Tags
Data Science