This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex_bi_series-sherpa-onnx/dart-api-examples/non-streaming-asr/run-moonshine.sh
2024-10-27 12:04:12 +08:00

21 lines
811 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
dart pub get
if [ ! -f ./sherpa-onnx-moonshine-tiny-en-int8/tokens.txt ]; then
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/sherpa-onnx-moonshine-tiny-en-int8.tar.bz2
tar xvf sherpa-onnx-moonshine-tiny-en-int8.tar.bz2
rm sherpa-onnx-moonshine-tiny-en-int8.tar.bz2
fi
dart run \
./bin/moonshine.dart \
--preprocessor ./sherpa-onnx-moonshine-tiny-en-int8/preprocess.onnx \
--encoder ./sherpa-onnx-moonshine-tiny-en-int8/encode.int8.onnx \
--uncached-decoder ./sherpa-onnx-moonshine-tiny-en-int8/uncached_decode.int8.onnx \
--cached-decoder ./sherpa-onnx-moonshine-tiny-en-int8/cached_decode.int8.onnx \
--tokens ./sherpa-onnx-moonshine-tiny-en-int8/tokens.txt \
--input-wav ./sherpa-onnx-moonshine-tiny-en-int8/test_wavs/0.wav