93 lines
1.7 KiB
Bash
Executable File
93 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
cd dart-api-examples
|
|
|
|
pushd non-streaming-asr
|
|
|
|
echo '----------SenseVoice----------'
|
|
./run-sense-voice.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------NeMo transducer----------'
|
|
./run-nemo-transducer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------NeMo CTC----------'
|
|
./run-nemo-ctc.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------TeleSpeech CTC----------'
|
|
./run-telespeech-ctc.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------whisper----------'
|
|
./run-whisper.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------zipformer transducer----------'
|
|
./run-zipformer-transducer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------paraformer itn----------'
|
|
./run-paraformer-itn.sh
|
|
|
|
echo '----------paraformer----------'
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------VAD with paraformer----------'
|
|
./run-vad-with-paraformer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
popd # non-streaming-asr
|
|
|
|
pushd tts
|
|
|
|
echo '----------piper tts----------'
|
|
./run-piper.sh
|
|
rm -rf vits-piper-*
|
|
|
|
echo '----------coqui tts----------'
|
|
./run-coqui.sh
|
|
rm -rf vits-coqui-*
|
|
|
|
echo '----------zh tts----------'
|
|
./run-zh.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
popd # tts
|
|
|
|
pushd streaming-asr
|
|
|
|
echo '----------streaming zipformer ctc HLG----------'
|
|
./run-zipformer-ctc-hlg.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------streaming zipformer ctc----------'
|
|
./run-zipformer-ctc.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------streaming zipformer transducer----------'
|
|
./run-zipformer-transducer-itn.sh
|
|
./run-zipformer-transducer.sh
|
|
rm -f itn*
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------streaming NeMo transducer----------'
|
|
./run-nemo-transducer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
echo '----------streaming paraformer----------'
|
|
./run-paraformer.sh
|
|
rm -rf sherpa-onnx-*
|
|
|
|
popd # streaming-asr
|
|
|
|
pushd vad
|
|
./run.sh
|
|
rm *.onnx
|
|
popd
|
|
|