This operation determinizes a weighted transducer. The result will be an equivalent FST that has the property that no state has two transitions with the same input label. For this algorithm, epsilon transitions are treated as regular symbols (cf. RmEpsilon).
The transducer must be functional. The weights must be (weakly) left divisible (valid for TropicalWeight and LogWeight for instance) and zero-sum-free.
template <class Arc>
void Determinize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst);template <class Arc> DeterminizeFst<Arc>::
DeterminizeFst(const Fst<Arc> &fst);fstdeterminize a.fst out.fst(TropicalWeight)
Determinize(&A);
DeterminizeFst<Arc>(A);
fstdeterminize a.fst out.fstDeterminize:
- Determinizable: exponential (polynomial in the size of the output)
- Non-determinizable: does not terminate
DeterminizeFst:
- Determinizable: exponential (polynomial in the size of the output)
- Non-determinizable: does not terminate
The determinizable automata include all unweighted and all acyclic input.
Epsilons may be added as input labels at the ends of paths when determinizing transducers. If input transducer also contains epsilons, this may result in a non-deterministic result even when the epsilons are treated as regular symbols. The subsequential label can be chosen as a non-zero value to avoid this issue by passing it as an option
Non-functional transducers are handled by choosing he determinize type option (in a variant call to this function/class):
- FUNCTIONAL: give an error for non-functional input (default)
- NONFUNCTIONAL: permissible when the output ambiguity is finite
($p$-subsequentiable). The
subsequential_labelshould be non-zero andincrement_subsequential_labelshould be true or the result can be non-deterministic by the default use of epsilons as the$p$ -subsequential labels found at the ends of paths. Care should be taken that these$p$ -subsequential labels ($\mathtt{subsequential_label}, \dots, \mathtt{subsequential_label} - p - 1$ ) do not collide with existing labels. - DISAMBIGUATE: only the shortest path output for each input is retained, permissible when the semiring has the path property
- Mehryar Mohri. Finite-State Transducers in Language and Speech Processing. Computational Linguistics, 23:2, 1997.
- Cyril Allauzen and Mehryar Mohri. Efficient Algorithms for Testing the Twins Property. Journal of Automata, Languages and Combinatorics, 8(2):117-144, 2003.

