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 wenetimport sys
import wenet
wav_file = sys.argv[1]
decoder = wenet.Decoder(lang='chs')
ans = decoder.decode_wav(wav_file)
print(ans)
# call decoder.reset() if you want to do the next decodingYou can also specify the following parameter in wenet.Decoder
-
lang(str): The language you used,chsfor Chinese, andenfor English. -
model_dir(str): is theRuntime Modeldirectory, it contains the following files. If not provided, official model for specificlangwill be downloaded automatically.final.zip: runtime TorchScript ASR model.units.txt: modeling units fileTLG.fst: optional, it means decoding with LM whenTLG.fstis 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 wave
import 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 [email protected]:wenet-e2e/wenet.git
cd wenet/runtime/binding/python
python setup.py install