From b796fdb883d8bfa1e01bb5e1920ed36d3ff521da Mon Sep 17 00:00:00 2001 From: yfyeung Date: Wed, 10 Jul 2024 00:21:03 -0700 Subject: [PATCH] update --- egs/librispeech/ASR/decode.sh | 12 ------------ egs/librispeech/ASR/decode_single.sh | 8 -------- egs/librispeech/ASR/sync.sh | 11 ----------- 3 files changed, 31 deletions(-) delete mode 100755 egs/librispeech/ASR/decode.sh delete mode 100755 egs/librispeech/ASR/decode_single.sh delete mode 100755 egs/librispeech/ASR/sync.sh diff --git a/egs/librispeech/ASR/decode.sh b/egs/librispeech/ASR/decode.sh deleted file mode 100755 index e67c0188d..000000000 --- a/egs/librispeech/ASR/decode.sh +++ /dev/null @@ -1,12 +0,0 @@ -export CUDA_VISIBLE_DEVICES=2 - -for epoch in {30..30}; do - for ((avg=1; avg<=$epoch-1; avg++)); do - ./zipformer_lstm/decode.py \ - --epoch $epoch \ - --avg $avg \ - --exp-dir ./zipformer_lstm/exp_dropout0.2 \ - --max-duration 2000 \ - --decoding-method greedy_search - done -done diff --git a/egs/librispeech/ASR/decode_single.sh b/egs/librispeech/ASR/decode_single.sh deleted file mode 100755 index 9a340c3ff..000000000 --- a/egs/librispeech/ASR/decode_single.sh +++ /dev/null @@ -1,8 +0,0 @@ -export CUDA_VISIBLE_DEVICES=$1 - -./zipformer_lstm/decode.py \ - --epoch $2 \ - --avg $3 \ - --exp-dir ./zipformer_lstm/exp \ - --max-duration 2000 \ - --decoding-method beam_search diff --git a/egs/librispeech/ASR/sync.sh b/egs/librispeech/ASR/sync.sh deleted file mode 100755 index 63f946ebf..000000000 --- a/egs/librispeech/ASR/sync.sh +++ /dev/null @@ -1,11 +0,0 @@ -project=icefall-asr-librispeech-zipformer-2023-11-04 -run=4V10032G_lstm1_decoderdropout0.2_bpe500 -recipe=zipformer_lstm - -wandb sync ${recipe}/exp_dropout0.2/tensorboard/ --sync-tensorboard -p $project --id $run - -while true -do - wandb sync ${recipe}/exp_dropout0.2/tensorboard/ --sync-tensorboard -p $project --id $run --append - sleep 60 -done