Provide models for mobile-only platforms by fixing batch size to 1 (#1276)

This commit is contained in:
Fangjun Kuang
2024-08-22 19:36:24 +08:00
committed by GitHub
parent d8001d6edc
commit 0e0d04a97a
6 changed files with 287 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
name: mobile-asr-models
on:
push:
branches:
- asr-mobile
workflow_dispatch:
concurrency:
group: mobile-asr-models-${{ github.ref }}
cancel-in-progress: true
jobs:
mobile-asr-models:
if: github.repository_owner == 'k2-fsa' || github.repository_owner == 'csukuangfj' || github.repository_owner == 'csu-fangjun'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash
run: |
python3 -m pip install onnxruntime==1.16.3 onnx==1.15.0
- name: Run
shell: bash
run: |
cd scripts/mobile-asr-models
./run.sh
- name: Release
uses: svenstaro/upload-release-action@v2
with:
file_glob: true
file: ./*.tar.bz2
overwrite: true
repo_name: k2-fsa/sherpa-onnx
repo_token: ${{ secrets.UPLOAD_GH_SHERPA_ONNX_TOKEN }}
tag: asr-models