alphacep / alphacep/vosk-api

Model Adaption Documentation (small model w/ custom dictionary)

未关闭
#2,009 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Jupyter Notebook
星标
15.1k
派生
1.8k
PR 合并指标
30 天内没有已合并 PR

描述

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**
```
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
1 2 L
2 3 F
3 12 AA ALPHA
0 4 B
4 5 R
5 6 AA
...
```

**phones.txt**
```
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!

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。