How to perform FST (Finite State Transducer) composition

后端 未结 3 1048
天命终不由人
天命终不由人 2021-02-08 12:17

Consider the following FSTs :

T1 

0 1 a : b
0 2 b : b
2 3 b : b
0 0 a : a
1 3 b : a

T2

0 1 b : a
1 2 b : a
1 1 a : d
1 2 a : c

How do I perf

3条回答
  •  青春惊慌失措
    2021-02-08 12:59

    If you are more amenable to graphical explanations, the following set of slides provides incremental, graphical examples of the composition algorithm in practice, and also includes discussion of epsilon transitions in the component transducers. Epsilon transitions complicate the composition process, and the algorithm described in outis answer may not generate the correct result in this case, depending on the semiring being used.

    See slides 10~35 for some graphical examples:

    http://www.gavo.t.u-tokyo.ac.jp/~novakj/wfst-algorithms.pdf

提交回复
热议问题