From eb549bf5d075e0d40a90bd553043e4f76425a64c Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Sat, 30 Jul 2022 22:19:37 +0800 Subject: [PATCH] Fix typos. --- ...n-librispeech-pruned-transducer-stateless3-2022-05-13.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/run-librispeech-pruned-transducer-stateless3-2022-05-13.sh b/.github/scripts/run-librispeech-pruned-transducer-stateless3-2022-05-13.sh index 00a6e2553..2deab04b9 100755 --- a/.github/scripts/run-librispeech-pruned-transducer-stateless3-2022-05-13.sh +++ b/.github/scripts/run-librispeech-pruned-transducer-stateless3-2022-05-13.sh @@ -61,7 +61,7 @@ log "Decode with ONNX models" --onnx-joiner-filename $repo/exp/joiner.onnx ./pruned_transducer_stateless3/onnx_pretrained.py \ - --bpe-model ./data/lang_bpe_500/bpe.model \ + --bpe-model $repo/data/lang_bpe_500/bpe.model \ --encoder-model-filename $repo/exp/encoder.onnx \ --decoder-model-filename $repo/exp/decoder.onnx \ --joiner-model-filename $repo/exp/joiner.onnx \ @@ -72,7 +72,7 @@ log "Decode with ONNX models" log "Decode with models exported by torch.jit.trace()" ./pruned_transducer_stateless3/jit_pretrained.py \ - --bpe-model ./data/lang_bpe_500/bpe.model \ + --bpe-model $repo/data/lang_bpe_500/bpe.model \ --encoder-model-filename $repo/exp/encoder_jit_trace.pt \ --decoder-model-filename $repo/exp/decoder_jit_trace.pt \ --joiner-model-filename $repo/exp/joiner_jit_trace.pt \ @@ -83,7 +83,7 @@ log "Decode with models exported by torch.jit.trace()" log "Decode with models exported by torch.jit.script()" ./pruned_transducer_stateless3/jit_pretrained.py \ - --bpe-model ./data/lang_bpe_500/bpe.model \ + --bpe-model $repo/data/lang_bpe_500/bpe.model \ --encoder-model-filename $repo/exp/encoder_jit_script.pt \ --decoder-model-filename $repo/exp/decoder_jit_script.pt \ --joiner-model-filename $repo/exp/joiner_jit_script.pt \