Skip to content

Model Adaption Documentation (small model w/ custom dictionary) #2009

@ethanmcmike

Description

@ethanmcmike

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

  1. 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?
  2. 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?
  3. Is there a better method to meet these requirements?

Any help is appreciated!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions