Skip to content

Limit MFCC feature extraction job number in Dihard recipe #2865

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

Merged
merged 13 commits into from
Nov 21, 2018
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
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -141,7 +141,7 @@ if [ $stage -le 3 ]; then
# Make MFCCs for the augmented data. Note that we do not compute a new
# vad.scp file here. Instead, we use the vad.scp from the clean version of
# the list.
steps/make_mfcc.sh --mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd" \
steps/make_mfcc.sh --mfcc-config conf/mfcc.conf --nj 40 --cmd "$train_cmd --max-jobs-run 20" \
data/train_aug_1m exp/make_mfcc $mfccdir

# Combine the clean and augmented training data. This is now roughly
Expand Down