From 66c0634cd7274a6434825c43f6be694cb4618a29 Mon Sep 17 00:00:00 2001 From: marvin-nj <1120331898@qq.com> Date: Thu, 5 Dec 2019 10:59:00 +0800 Subject: [PATCH] [scripts] Fix issue in copy_lat_dir.sh affecting combine_lat_dirs.sh (missing phones.txt) (#3757) --- egs/wsj/s5/steps/copy_lat_dir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/wsj/s5/steps/copy_lat_dir.sh b/egs/wsj/s5/steps/copy_lat_dir.sh index dd1e10fb307..67b2a66382e 100755 --- a/egs/wsj/s5/steps/copy_lat_dir.sh +++ b/egs/wsj/s5/steps/copy_lat_dir.sh @@ -69,6 +69,6 @@ rm $dir/lat_tmp.* echo $nj > $dir/num_jobs -for f in cmvn_opts splice_opts final.mdl splice_opts tree frame_subsampling_factor; do +for f in phones.txt cmvn_opts splice_opts final.mdl splice_opts tree frame_subsampling_factor; do if [ -f $src_dir/$f ]; then cp $src_dir/$f $dir/$f; fi done