Fangjun Kuang
Committed by GitHub

Add Android APK for streaming Paraformer ASR (#1538)

@@ -23,8 +23,8 @@ jobs: @@ -23,8 +23,8 @@ jobs:
23 fail-fast: false 23 fail-fast: false
24 matrix: 24 matrix:
25 os: [ubuntu-latest] 25 os: [ubuntu-latest]
26 - total: ["3"]  
27 - index: ["0", "1", "2"] 26 + total: ["6"]
  27 + index: ["0", "1", "2", "3", "4", "5"]
28 28
29 steps: 29 steps:
30 - uses: actions/checkout@v4 30 - uses: actions/checkout@v4
@@ -246,6 +246,23 @@ def get_models(): @@ -246,6 +246,23 @@ def get_models():
246 popd 246 popd
247 """, 247 """,
248 ), 248 ),
  249 + Model(
  250 + model_name="sherpa-onnx-streaming-paraformer-bilingual-zh-en",
  251 + idx=5,
  252 + lang="zh_en",
  253 + short_name="paraformer",
  254 + cmd="""
  255 + pushd $model_name
  256 + rm -fv decoder.onnx
  257 + rm -fv encoder.onnx
  258 +
  259 + rm -rfv test_wavs
  260 +
  261 + ls -lh
  262 +
  263 + popd
  264 + """,
  265 + ),
249 ] 266 ]
250 267
251 return models 268 return models