From 4316ec43d77ccd63b48b1e2c0bfe1dc457cb06b6 Mon Sep 17 00:00:00 2001 From: wgb14 Date: Fri, 3 Dec 2021 16:34:36 -0500 Subject: [PATCH] small fix --- egs/gigaspeech/ASR/prepare.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/egs/gigaspeech/ASR/prepare.sh b/egs/gigaspeech/ASR/prepare.sh index b0c027448..284b32e08 100755 --- a/egs/gigaspeech/ASR/prepare.sh +++ b/egs/gigaspeech/ASR/prepare.sh @@ -142,9 +142,9 @@ fi if [ $stage -le 7 ] && [ $stop_stage -ge 7 ]; then log "Stage 7: Combine features for XL" - if [ ! -f data/fbank/XL_split_${num_splits}/cuts_XL.json.gz ]; then - pieces=$(find data/fbank/XL_split_${num_splits} -name "cuts_XL.*.json.gz") - lhotse combine $pieces data/fbank/XL_split_${num_splits}/cuts_XL.json.gz + if [ ! -f data/fbank/cuts_XL.jsonl.gz ]; then + pieces=$(find data/fbank/XL_split_${num_splits} -name "cuts_XL.*.jsonl.gz") + lhotse combine $pieces data/fbank/cuts_XL.jsonl.gz fi fi