Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
[scripts] rnnlm rescoring: fix bug, remove check of unused file (kald…
Browse files Browse the repository at this point in the history
…i-asr#4525)

Not need to check is $data/feats.scp exist
  • Loading branch information
Winedays authored May 12, 2021
1 parent 344c691 commit 14d17c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rnnlm/lmrescore_nbest_back.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ elif [ ! -f $oldlm ]; then
exit 1;
fi

for f in $rnndir/final.raw $data/feats.scp $indir/lat.1.gz; do
for f in $rnndir/final.raw $indir/lat.1.gz; do
[ ! -f $f ] && echo "$0: expected file $f to exist." && exit 1;
done

Expand Down

0 comments on commit 14d17c5

Please sign in to comment.