-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Description
I am trying to use Vosk for voice recognition in an air traffic control simulator called Airflow. It will be running as an offline desktop application in real-time so it requires the Vosk small English model for speed. The dictionary I need is based on FAA phraseology so it is small, but also contains several unique words which are not in the standard English dictionary (eg "ILS", "niner", "VOR", fix names).
Requirements:
- Small model speeds (to run on desktop application)
- Custom dictionary (unique words which are not in previous models)
- Custom pronunciation (for words that exist but have new phones)
Progress:
I have manually created the following files.
words.txt
<eps> 0
SIL 1
ALPHA 2
BRAVO 3
CHARLIE 4
...
lexicon.txt
ALPHA AE L F AA
BRAVO B R AA V OW
...
lexicon.fst.txt
0 1 AE <eps>
1 2 L <eps>
2 3 F <eps>
3 12 AA ALPHA
0 4 B <eps>
4 5 R <eps>
5 6 AA <eps>
...
phones.txt
<eps> 0
AA 1
AE 2
AH 3
AO 4
...
grammar.txt
Generated from command formats in a .jsgf.
I have been able to compile L.fst and G.fst using OpenFst from these files.
Documentation Questions
- Is it possible to reuse the Vosk small model acoustic model and combine with my LG.fst? If so, what is the best way of doing this?
- Is it possible to prune a large model's acoustic model to be able to run at the small model speeds if I have a small dictionary?
- Is there a better method to meet these requirements?
Any help is appreciated!
Metadata
Metadata
Assignees
Labels
No labels