* Support streaming zipformer CTC * test online zipformer2 CTC * Update doc of sherpa-onnx.cc * Add Python APIs for streaming zipformer2 ctc * Add Python API examples for streaming zipformer2 ctc * Swift API for streaming zipformer2 CTC * NodeJS API for streaming zipformer2 CTC * Kotlin API for streaming zipformer2 CTC * Golang API for streaming zipformer2 CTC * C# API for streaming zipformer2 CTC * Release v1.9.6
222 lines
9.1 KiB
YAML
222 lines
9.1 KiB
YAML
name: Python offline websocket server
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: python-offline-websocket-server-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
python_offline_websocket_server:
|
|
runs-on: ${{ matrix.os }}
|
|
name: ${{ matrix.os }} ${{ matrix.python-version }} ${{ matrix.model_type }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
model_type: ["transducer", "paraformer", "nemo_ctc", "whisper", "tdnn"]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: ccache
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
with:
|
|
key: ${{ matrix.os }}-python-${{ matrix.python-version }}
|
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Python dependencies
|
|
shell: bash
|
|
run: |
|
|
python3 -m pip install --upgrade pip numpy sentencepiece
|
|
|
|
- name: Install sherpa-onnx
|
|
shell: bash
|
|
run: |
|
|
export CMAKE_CXX_COMPILER_LAUNCHER=ccache
|
|
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
|
|
cmake --version
|
|
|
|
python3 -m pip install --no-deps --verbose .
|
|
python3 -m pip install websockets
|
|
|
|
- name: Start server for transducer models
|
|
if: matrix.model_type == 'transducer'
|
|
shell: bash
|
|
run: |
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-zipformer-en-2023-06-26
|
|
cd sherpa-onnx-zipformer-en-2023-06-26
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
|
|
python3 ./python-api-examples/non_streaming_server.py \
|
|
--encoder ./sherpa-onnx-zipformer-en-2023-06-26/encoder-epoch-99-avg-1.onnx \
|
|
--decoder ./sherpa-onnx-zipformer-en-2023-06-26/decoder-epoch-99-avg-1.onnx \
|
|
--joiner ./sherpa-onnx-zipformer-en-2023-06-26/joiner-epoch-99-avg-1.onnx \
|
|
--tokens ./sherpa-onnx-zipformer-en-2023-06-26/tokens.txt &
|
|
|
|
echo "sleep 10 seconds to wait the server start"
|
|
sleep 10
|
|
|
|
- name: Start client for transducer models
|
|
if: matrix.model_type == 'transducer'
|
|
shell: bash
|
|
run: |
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-paralell.py \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/0.wav \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/1.wav \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/8k.wav
|
|
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-sequential.py \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/0.wav \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/1.wav \
|
|
./sherpa-onnx-zipformer-en-2023-06-26/test_wavs/8k.wav
|
|
|
|
- name: Start server for paraformer models
|
|
if: matrix.model_type == 'paraformer' && matrix.os != 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-paraformer-bilingual-zh-en
|
|
cd sherpa-onnx-paraformer-bilingual-zh-en
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
|
|
python3 ./python-api-examples/non_streaming_server.py \
|
|
--paraformer ./sherpa-onnx-paraformer-bilingual-zh-en/model.int8.onnx \
|
|
--tokens ./sherpa-onnx-paraformer-bilingual-zh-en/tokens.txt &
|
|
|
|
echo "sleep 10 seconds to wait the server start"
|
|
sleep 10
|
|
|
|
- name: Start client for paraformer models
|
|
if: matrix.model_type == 'paraformer' && matrix.os != 'windows-latest'
|
|
shell: bash
|
|
run: |
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-paralell.py \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/0.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/1.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/2.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/8k.wav
|
|
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-sequential.py \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/0.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/1.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/2.wav \
|
|
./sherpa-onnx-paraformer-bilingual-zh-en/test_wavs/8k.wav
|
|
|
|
- name: Start server for nemo_ctc models
|
|
if: matrix.model_type == 'nemo_ctc'
|
|
shell: bash
|
|
run: |
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
cd sherpa-onnx-nemo-ctc-en-conformer-medium
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
|
|
python3 ./python-api-examples/non_streaming_server.py \
|
|
--nemo-ctc ./sherpa-onnx-nemo-ctc-en-conformer-medium/model.onnx \
|
|
--tokens ./sherpa-onnx-nemo-ctc-en-conformer-medium/tokens.txt &
|
|
|
|
echo "sleep 10 seconds to wait the server start"
|
|
sleep 10
|
|
|
|
- name: Start client for nemo_ctc models
|
|
if: matrix.model_type == 'nemo_ctc'
|
|
shell: bash
|
|
run: |
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-paralell.py \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/0.wav \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/1.wav \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/8k.wav
|
|
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-sequential.py \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/0.wav \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/1.wav \
|
|
./sherpa-onnx-nemo-ctc-en-conformer-medium/test_wavs/8k.wav
|
|
|
|
- name: Start server for whisper models
|
|
if: matrix.model_type == 'whisper'
|
|
shell: bash
|
|
run: |
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-whisper-tiny.en
|
|
cd sherpa-onnx-whisper-tiny.en
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
|
|
python3 ./python-api-examples/non_streaming_server.py \
|
|
--whisper-encoder=./sherpa-onnx-whisper-tiny.en/tiny.en-encoder.onnx \
|
|
--whisper-decoder=./sherpa-onnx-whisper-tiny.en/tiny.en-decoder.onnx \
|
|
--tokens=./sherpa-onnx-whisper-tiny.en/tiny.en-tokens.txt &
|
|
|
|
echo "sleep 10 seconds to wait the server start"
|
|
sleep 10
|
|
|
|
- name: Start client for whisper models
|
|
if: matrix.model_type == 'whisper'
|
|
shell: bash
|
|
run: |
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-paralell.py \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/0.wav \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/1.wav \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/8k.wav
|
|
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-sequential.py \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/0.wav \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/1.wav \
|
|
./sherpa-onnx-whisper-tiny.en/test_wavs/8k.wav
|
|
|
|
- name: Start server for tdnn models
|
|
if: matrix.model_type == 'tdnn'
|
|
shell: bash
|
|
run: |
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-tdnn-yesno
|
|
cd sherpa-onnx-tdnn-yesno
|
|
git lfs pull --include "*.onnx"
|
|
cd ..
|
|
|
|
python3 ./python-api-examples/non_streaming_server.py \
|
|
--tdnn-model=./sherpa-onnx-tdnn-yesno/model-epoch-14-avg-2.onnx \
|
|
--tokens=./sherpa-onnx-tdnn-yesno/tokens.txt \
|
|
--sample-rate=8000 \
|
|
--feat-dim=23 &
|
|
|
|
echo "sleep 10 seconds to wait the server start"
|
|
sleep 10
|
|
|
|
- name: Start client for tdnn models
|
|
if: matrix.model_type == 'tdnn'
|
|
shell: bash
|
|
run: |
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-paralell.py \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_0_1_0_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_0_0_1_0.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_0_1_1_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_1_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_1_0_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_1_0_1_1_0.wav
|
|
|
|
python3 ./python-api-examples/offline-websocket-client-decode-files-sequential.py \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_0_1_0_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_0_0_1_0.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_0_1_1_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_0_1_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_1_0_0_0_1.wav \
|
|
./sherpa-onnx-tdnn-yesno/test_wavs/0_0_1_1_0_1_1_0.wav
|