This is a python binding of WeNet.
WeNet is a production first and production ready end-to-end speech recognition toolkit.
The best things of the binding are:
- Multiple languages supports, including English, Chinese. Other languages are in development.
- Non-streaming and streaming API
- N-best, contextual biasing, and timestamp supports, which are very important for speech productions.
- Alignment support. You can get phone level alignments this tool, on developing.
Python 3.6+ is required.
pip3 install wenetruntime
Note:
- For macOS, wenetruntime packed
libtorch.so
, so we can't import torch and wenetruntime at the same time. - For Windows and Linux, wenetruntime depends on torch. Please install and import the same version
torch
as wenetruntime.
import sys
import torch
import wenetruntime as wenet
wav_file = sys.argv[1]
decoder = wenet.Decoder(lang='chs')
ans = decoder.decode_wav(wav_file)
print(ans)
You can also specify the following parameter in wenet.Decoder
-
lang
(str): The language you used,chs
for Chinese, anden
for English. -
model_dir
(str): is theRuntime Model
directory, it contains the following files. If not provided, official model for specificlang
will be downloaded automatically.final.zip
: runtime TorchScript ASR model.units.txt
: modeling units fileTLG.fst
: optional, it means decoding with LM whenTLG.fst
is given.words.txt
: optional, word level symbol table for decoding withTLG.fst
Please refer https://github.com/wenet-e2e/wenet/blob/main/docs/pretrained_models.md for the details of
Runtime Model
. -
nbest
(int): Output the top-n best result. -
enable_timestamp
(bool): Whether to enable the word level timestamp. -
context
(List[str]): a list of context biasing words. -
context_score
(float): context bonus score. -
continuous_decoding
(bool): Whether to enable continuous(long) decoding.
For example:
decoder = wenet.Decoder(model_dir,
lang='chs',
nbest=5,
enable_timestamp=True,
context=['不忘初心', '牢记使命'],
context_score=3.0)
import sys
import torch
import wave
import wenetruntime as wenet
test_wav = sys.argv[1]
with wave.open(test_wav, 'rb') as fin:
assert fin.getnchannels() == 1
wav = fin.readframes(fin.getnframes())
decoder = wenet.Decoder(lang='chs')
# We suppose the wav is 16k, 16bits, and decode every 0.5 seconds
interval = int(0.5 * 16000) * 2
for i in range(0, len(wav), interval):
last = False if i + interval < len(wav) else True
chunk_wav = wav[i: min(i + interval, len(wav))]
ans = decoder.decode(chunk_wav, last)
print(ans)
You can use the same parameters as we introduced above to control the behavior of wenet.Decoder
git clone https://github.com/wenet-e2e/wenet.git
cd wenet/runtime/binding/python
python setup.py install