This operation computes the composition of two transducers. If A transduces
string x to y with weight a and B transduces y to z with weight b,
then their composition transduces string x to z with weight
The output labels of the first transducer or the input labels of the second
transducer must be sorted (or the FSTs otherwise support
appropriate matchers). The weights need to form a
commutative semiring (valid for TropicalWeight and
LogWeight for instance).
Versions of this operation (not all shown here) accept options that allow choosing the matcher, composition filter, state table and, when delayed, the caching behavior used by composition.
template <class Arc>
void Compose(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, MutableFst<Arc> *ofst);template <class Arc> ComposeFst<Arc>::
ComposeFst(const Fst<Arc> &fst1, const Fst<Arc> &fst2);fstcompose [--opts] a.fst b.fst out.fst
--connect: Trim output (def: true)Compose(A, B, &C);
ComposeFst<Arc>(A, B);
fstcompose a.fst b.fst out.fstAssuming the first FST is unsorted and the second is sorted:
Compose:
- Time:
$O(V_1 V_2 D_1 (\log D_2 + M_2))$ - Space:
$O(V_1 V_2 D_1 M_2)$
where
ComposeFst:
- Time:
$O(v_1 v_2 d_1 (\log d_2 + m_2))$ - Space:
$O(v_1 v_2)$
where
Compose and fstcompose trim their output, ComposeFst
does not (since it is a delayed operation).
The efficiency of composition can be strongly affected by several factors:
-
the choice of which transducer is sorted
-
prefer sorting the FST that has the greater average out-degree
-
sorting both transducers allows composition to automatically select the best transducer to match against (per state pair)
-
note stored sort properties of the FSTs are first checked in constant time followed by the minimum number of linear-time sort tests necessary to discover one sorted FST; thus composition may be unaware that both FSTs are sorted when those properties are not stored.
-
the amount of non-determinism
-
the presence and location of epsilon transitions - avoid epsilon transitions on the output side of the first transducer or the input side of the second transducer or prefer placing them later in a path since they delay matching and can introduce non-coaccessible states and transitions
See here for more discussion on efficient usage.


