How to increase the accuracy of the vosk module in Python?
Aperta
- Lingua principale
- Jupyter Notebook
- Stelle
- 15.1k
- Fork
- 1.8k
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
How to maximize vosk module accuracy?
I use the «large» model
Thanks
codes:
model = Model("vosk-model-fa-0.5")
wf = wave.open("audio.wav", "rb")
rec = KaldiRecognizer(model, wf.getframerate())
while True:
data = wf.readframes(8000)
if len(data) == 0:
break
if rec.AcceptWaveform(data):
a=rec.Result()
else:
a=rec.PartialResult()
a=rec.Result()
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.