Expand description
Functions to concatenate FSTs.
Structs§
- Concat
Fst - Computes the concatenation (product) of two FSTs; this version is a delayed FST. If FST1 transduces string x to y with weight a and FST2 transduces string w to v with weight b, then their concatenation transduces string xw to yv with Times(a, b).
Functions§
- concat
- Performs the concatenation of two wFSTs. If
Atransduces stringxtoywith weightaandBtransduces stringwtovwith weightb, then their concatenation transduces stringxwtoyvwith weighta ⊗ b.