Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI for non-streaming zipformer about ksponspeech #1667

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 63 additions & 3 deletions .github/scripts/ksponspeech/ASR/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,66 @@ log() {
cd egs/ksponspeech/ASR


function test_pretrained() {
function test_pretrained_non_streaming() {
git lfs install
git clone https://huggingface.co/johnBamma/icefall-asr-ksponspeech-zipformer-2024-06-24
repo=icefall-asr-ksponspeech-zipformer-2024-06-24
pushd $repo
mkdir test_wavs
cd test_wavs
curl -SL -O https://huggingface.co/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16/resolve/main/test_wavs/0.wav
curl -SL -O https://huggingface.co/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16/resolve/main/test_wavs/1.wav
curl -SL -O https://huggingface.co/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16/resolve/main/test_wavs/2.wav
curl -SL -O https://huggingface.co/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16/resolve/main/test_wavs/3.wav
curl -SL -O https://huggingface.co/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16/resolve/main/test_wavs/trans.txt
cd ../exp
ln -s pretrained.pt epoch-99.pt
ls -lh
popd

log 'test pretrained.py'
./zipformer/pretrained.py \
--checkpoint $repo/exp/pretrained.pt \
--tokens $repo/data/lang_bpe_5000/tokens.txt \
--method greedy_search \
$repo/test_wavs/0.wav \
$repo/test_wavs/1.wav \
$repo/test_wavs/2.wav \
$repo/test_wavs/3.wav

log 'test export-onnx.py'

./zipformer/export-onnx.py \
--tokens $repo/data/lang_bpe_5000/tokens.txt \
--use-averaged-model 0 \
--epoch 99 \
--avg 1 \
--exp-dir $repo/exp/

ls -lh $repo/exp

ls -lh $repo/data/lang_bpe_5000/

log 'test exported onnx models'
./zipformer/onnx_pretrained.py \
--encoder-model-filename $repo/exp/encoder-epoch-99-avg-1.onnx \
--decoder-model-filename $repo/exp/decoder-epoch-99-avg-1.onnx \
--joiner-model-filename $repo/exp/joiner-epoch-99-avg-1.onnx \
--tokens $repo/data/lang_bpe_5000/tokens.txt \
$repo/test_wavs/0.wav

dst=/tmp/model-2024-06-24
mkdir -p $dst

cp -av $repo/test_wavs $dst
cp -v $repo/exp/*.onnx $dst
cp -v $repo/exp/*.onnx $dst
cp -v $repo/data/lang_bpe_5000/tokens.txt $dst
cp -v $repo/data/lang_bpe_5000/bpe.model $dst
rm -rf $repo
}

function test_pretrained_streaming() {
git lfs install
git clone https://huggingface.co/johnBamma/icefall-asr-ksponspeech-pruned-transducer-stateless7-streaming-2024-06-12
repo=icefall-asr-ksponspeech-pruned-transducer-stateless7-streaming-2024-06-12
Expand Down Expand Up @@ -59,7 +118,7 @@ function test_pretrained() {
--tokens $repo/data/lang_bpe_5000/tokens.txt \
$repo/test_wavs/0.wav

dst=/tmp/model1
dst=/tmp/model-2024-06-16
mkdir -p $dst

cp -v $repo/exp/*.onnx $dst
Expand All @@ -69,4 +128,5 @@ function test_pretrained() {
rm -rf $repo
}

test_pretrained
test_pretrained_non_streaming
test_pretrained_streaming
61 changes: 55 additions & 6 deletions .github/workflows/ksponspeech.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,19 @@ jobs:
.github/scripts/ksponspeech/ASR/run.sh
- name: Show model files
- name: Show model files (2024-06-24)
shell: bash
run: |
src=/tmp/model1
src=/tmp/model-2024-06-24
ls -lh $src
- name: Upload model to huggingface
- name: Show model files (2024-06-16)
shell: bash
run: |
src=/tmp/model-2024-06-16
ls -lh $src
- name: Upload model to huggingface (2024-06-24)
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
uses: nick-fields/retry@v3
Expand All @@ -72,7 +78,41 @@ jobs:
timeout_seconds: 200
shell: bash
command: |
src=/tmp/model1
src=/tmp/model-2024-06-24
git config --global user.email "[email protected]"
git config --global user.name "Fangjun Kuang"
rm -rf hf
export GIT_LFS_SKIP_SMUDGE=1
export GIT_CLONE_PROTECTION_ACTIVE=false
git clone https://huggingface.co/k2-fsa/sherpa-onnx-zipformer-korean-2024-06-24 hf
cd hf
git fetch
git pull
git merge -m "merge remote" --ff origin main
cp -av $src/* ./
ls -lh
git lfs track "bpe.model"
git lfs track "*.onnx"
git add .
git status
git commit -m "update models"
git status
git push https://csukuangfj:[email protected]/k2-fsa/sherpa-onnx-zipformer-korean-2024-06-24 main || true
rm -rf hf
- name: Upload model to huggingface (2024-06-16)
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
uses: nick-fields/retry@v3
with:
max_attempts: 20
timeout_seconds: 200
shell: bash
command: |
src=/tmp/model-2024-06-16
git config --global user.email "[email protected]"
git config --global user.name "Fangjun Kuang"
Expand All @@ -98,15 +138,24 @@ jobs:
git push https://csukuangfj:[email protected]/k2-fsa/sherpa-onnx-streaming-zipformer-korean-2024-06-16 main || true
rm -rf hf
- name: Prepare for release
- name: Prepare for release (2024-06-16)
shell: bash
run: |
src=/tmp/model1
src=/tmp/model-2024-06-16
d=sherpa-onnx-streaming-zipformer-korean-2024-06-16
mv $src ./$d
tar cjvf ${d}.tar.bz2 $d
ls -lh
- name: Prepare for release (2024-06-24)
shell: bash
run: |
src=/tmp/model-2024-06-24
d=sherpa-onnx-zipformer-korean-2024-06-24
mv $src ./$d
tar cjvf ${d}.tar.bz2 $d
ls -lh
- name: Release exported onnx models
uses: svenstaro/upload-release-action@v2
with:
Expand Down
Loading