Server
Hint
Please first refer to Installation to install sherpa before proceeding.
The server is responsible for accepting audio samples from the client, decoding it, and sending the recognition results back to the client.
Usage
cd /path/to/sherpa
./sherpa/bin/pruned_stateless_emformer_rnnt2/streaming_server.py --help
shows the usage message.
You need two files to start the server:
The neural network model, which is a torchscript file.
The BPE model.
The above two files can be obtained after training your model with https://github.com/k2-fsa/icefall/tree/master/egs/librispeech/ASR/pruned_stateless_emformer_rnnt2.
If you don’t want to train a model by yourself, you can try the pretrained model: https://huggingface.co/csukuangfj/icefall-asr-librispeech-pruned-stateless-emformer-rnnt2-2022-06-01
Hint
You can find pretrained models in RESULTS.md
for all the recipes in
icefall.
For instance, the pretrained models for the LibriSpeech dataset can be found at https://github.com/k2-fsa/icefall/blob/master/egs/librispeech/ASR/RESULTS.md.
The following shows you how to start the server with the above pretrained model.
cd /path/to/sherpa
git lfs install
git clone https://huggingface.co/csukuangfj/icefall-asr-librispeech-pruned-stateless-emformer-rnnt2-2022-06-01
./sherpa/bin/pruned_stateless_emformer_rnnt2/streaming_server.py \
--endpoint.rule3.min-utterance-length 1000.0 \
--port 6007 \
--max-batch-size 50 \
--max-wait-ms 5 \
--nn-pool-size 1 \
--nn-model-filename ./icefall-asr-librispeech-pruned-stateless-emformer-rnnt2-2022-06-01/exp/cpu_jit-epoch-39-avg-6-use-averaged-model-1.pt \
--bpe-model-filename ./icefall-asr-librispeech-pruned-stateless-emformer-rnnt2-2022-06-01/data/lang_bpe_500/bpe.model
That’s it!
Now you can start the Client, record your voice in real-time, and check the recognition results from the server.