Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Fix bugs in Dihard 2018 #2897

Merged
merged 15 commits into from
Dec 3, 2018
Prev Previous commit
Next Next commit
Limit MFCC Job numbers
  • Loading branch information
hzili1 committed Nov 21, 2018
commit b5ee62128b1b78a3fce57a203af304c89c4b0b90
2 changes: 1 addition & 1 deletion egs/dihard_2018/v1/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if [ $stage -le 1 ]; then
# Make MFCCs for each dataset
for name in train dihard_2018_dev dihard_2018_eval; do
steps/make_mfcc.sh --write-utt2num-frames true \
--mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd" \
--mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd --max-jobs-run 20" \
data/${name} exp/make_mfcc $mfccdir
utils/fix_data_dir.sh data/${name}
done
Expand Down
2 changes: 1 addition & 1 deletion egs/dihard_2018/v2/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fi
if [ $stage -le 1 ]; then
# Make MFCCs for each dataset.
for name in train dihard_2018_dev dihard_2018_eval; do
steps/make_mfcc.sh --write-utt2num-frames true --mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd" \
steps/make_mfcc.sh --write-utt2num-frames true --mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd --max-jobs-run 20" \
data/${name} exp/make_mfcc $mfccdir
utils/fix_data_dir.sh data/${name}
done
Expand Down