Content deleted Content added
Crystallina (talk | contribs) categorized |
conforming to usual Wikipedia conventions |
||
Line 1:
'''Iterative Viterbi
The scaled probability measure was first proposed by [[John S. Bridle]]. An early algorithm to solve this problem, [[sliding window]], was proposed by [[Jay G. Wilpon]] et al., 1989, with constant cost ''T'' = ''mn''<sup>2</sup>/2.
A faster algorithm consists of an iteration of calls to the [[Viterbi algorithm]], reestimating a filler score until convergence.
Line 7:
== The algorithm ==
A basic (non-optimized) version, finding the sequence ''s'' with the smallest normalized distance from some subsequence of ''t'' is:
<pre>
Line 30:
</pre>
The ViterbiDistance() procedure returns the tuple (''e'', ''B'', ''E''), i.e., the Viterbi score "''e''" for the match of ''t'' and the selected entry (''B'') and exit (''E'') points from it. "''B''" and "''E''" have to be recorded using a simple modification to Viterbi.
A modification that can be applied to CYK tables, proposed by Antoine Rozenknop, consists in subtracting ''e'' from all elements of the initial matrix ''d''.
== References ==
|