Infinite numbers in intends

I repeat my request: what are all these identical lines in the file: “/ home / pi / .config / rhasspy / profiles / fr / kaldi / language_model.txt” when using Kaldi in FST text mode

(xxx xxx <eps> <eps> 0.0)

Thank you for your reply
Arpagor

I found a solution …

here …

But I would like to have the explanation :slight_smile:
what do these repeating lines (xxx xxx < eps > < eps > 0.0) correspond to?

Thank’s arpagor

These repetition are states in the Finite State Transducer built by Rhasspy for ASR.

x y a b w

x = from state
y = to state
a = input symbol
b = output symbol
w = weight

There can be multiple ways to get to a symbol but they do not always go to the same following states. Hence the duplicates.

You can read more about wFST here for example:

Cheers

1 Like

Thank’s Fastjack for your explanation

Arpagor