concat
Classes
Functions
concat(fst: VectorFst, other_fst: VectorFst) -> VectorFst
Compute the concatenation of two Fsts.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fst |
VectorFst
|
Left fst. |
required |
other_fst |
VectorFst
|
Right fst. |
required |
Returns:
Type | Description |
---|---|
VectorFst
|
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.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fsts |
List[VectorFst]
|
List of Fsts to concatenated |
required |
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 |
|