@@ -320,41 +320,48 @@ if [ $stage -le 6 ]; then
320
320
fi
321
321
fi
322
322
323
+ if [ $stage -le 7 ]; then
324
+ # Caution: this part needs a GPU.
325
+ local/chain/run_tdnn.sh
326
+ fi
323
327
324
328
exit 0;
325
329
326
- # ## Caution: the parts of the script below this statement are not run by default.
327
- # ##
328
-
330
+ # Below are some commented-out commands that demonstrate how to run various other things--
331
+ # mainly outdated methods.
329
332
330
333
# Train and test MMI, and boosted MMI, on tri4b (LDA+MLLT+SAT on
331
334
# all the data). Use 30 jobs.
332
- steps/align_fmllr.sh --nj 30 --cmd " $train_cmd " \
333
- data/train_si284 data/lang exp/tri4b exp/tri4b_ali_si284 || exit 1;
334
- local/run_mmi_tri4b.sh
335
-
336
- # These demonstrate how to build a sytem usable for online-decoding with the nnet2 setup.
337
- # (see local/run_nnet2.sh for other, non-online nnet2 setups).
338
- local/online/run_nnet2.sh
339
- local/online/run_nnet2_baseline.sh
340
- local/online/run_nnet2_discriminative.sh
341
-
342
- # Demonstration of RNNLM rescoring on TDNN models. We comment this out by
343
- # default.
335
+ # Note: there isn't much use for this these days.
336
+ # steps/align_fmllr.sh --nj 30 --cmd "$train_cmd" \
337
+ # data/train_si284 data/lang exp/tri4b exp/tri4b_ali_si284 || exit 1;
338
+ # local/run_mmi_tri4b.sh
339
+
340
+ # The following are the old nnet2 recipes.
341
+ # local/online/run_nnet2.sh
342
+ # local/online/run_nnet2_baseline.sh
343
+ # local/online/run_nnet2_discriminative.sh
344
+
345
+ # The following is the
346
+
347
+
348
+ # Demonstration of RNNLM rescoring on nnet2 TDNN models. This is
349
+ # outdated now.
344
350
# local/run_rnnlms.sh
345
351
346
352
347
353
# local/run_nnet2.sh
348
354
349
355
# You probably want to run the sgmm2 recipe as it's generally a bit better:
350
- local/run_sgmm2.sh
356
+ # The SGMM2 recipe. This is better than GMMs but you probably just want the neural net.
357
+ # local/run_sgmm2.sh
351
358
352
359
# We demonstrate MAP adaptation of GMMs to gender-dependent systems here. This also serves
353
360
# as a generic way to demonstrate MAP adaptation to different domains.
354
361
# local/run_gender_dep.sh
355
362
356
- # You probably want to run the hybrid recipe as it is complementary:
357
- local/nnet/run_dnn.sh
363
+ # This is the old "nnet1" neural net.
364
+ # local/nnet/run_dnn.sh
358
365
359
366
# The following demonstrate how to re-segment long audios.
360
367
# local/run_segmentation_long_utts.sh
0 commit comments