concat
Classes
Functions
concat(fst: VectorFst, other_fst: VectorFst) -> VectorFst
Compute the concatenation of two Fsts. Args: fst: Left fst. other_fst: Right fst. Returns: Resulting fst.
Source code in rustfst/algorithms/concat.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
|
concat_list(fsts: List[VectorFst]) -> VectorFst
Compute the concatenation of a list of Fsts. Args: fsts: List of Fsts to concatenated
Returns:
Type | Description |
---|---|
VectorFst
|
The resulting concatenated Fst. |
Source code in rustfst/algorithms/concat.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|