FST (or OpenFst
) is a library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).
Questions tagged [fst]
36 questions
0
votes
1 answer
Understanding fst
I tried to do 2-gram language model and fst for sentence "dogs chase" suing openfst. I have attached the image for the same . Can someone enlight me on why there is a transition between final states?
I had assumed that double circle denotes final…

Naveen Gabriel
- 679
- 2
- 9
- 25
0
votes
1 answer
FST (de)serializes well to JSON, however has issues with default configuration
We are using FST (fast-serialization) to put on a disk large volumes of objects concurrently and then read them. Objects their selves are of complex structure and contain what not: primitives, complex types, arrays and sets of them. The issue is,…

Vladimir Salin
- 2,951
- 2
- 36
- 49
0
votes
1 answer
Linking SFST with python?
I've used SFST language for my project on Natural Language Processing.
How do I link or import SFST to my python code?
some link I…

jeevan
- 81
- 2
- 6
0
votes
0 answers
Standardizing sample size for re-estimation of Fst
I'm a newbie to R, so please be patient.
I have 4 populations of one species(pop in 1 column) , with diferent sample sizes.Having analysed mitDNA haplotypes (hap in another column) for each individual (each row) I now need to standardize the sample…

Silvia
- 11
- 2
0
votes
1 answer
How to properly set fst rules
I got in touch with tranducers and python, so i use default FST library. For example, I have a list ['a','b','c']. I need to replace 'b' if it is followed by 'c'. I make following rules, but it works only if 'b' is between 'a' and 'c' and only…

Mark Okhman
- 564
- 6
- 13
-1
votes
2 answers
How to apply write_fst() function to each dataframe in list?
I want to save each dataframe from list with its according names as .fst file. My list with dataframes is called tables. I tried to do this, but it didn't work:
lapply(write_fst(), tables)
How to do that? How to perform write_fst function to each…
user13467695