Blame view

egs/aspire/s5/local/chain/tuning/run_tdnn_asp_1.sh 8.77 KB
8dcb6dfcb   Yannick Estève   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
  #!/bin/bash
  
  set -e
  
  # same as tdnn_7b but with lesser number of parameters (17 million vs 27 million)
  
  affix=
  stage=12 # assuming you already ran the xent systems
  train_stage=-10
  get_egs_stage=-10
  dir=exp/chain/tdnn_asp1
  decode_iter=
  
  # training options
  num_epochs=4
  remove_egs=false
  common_egs_dir=exp/chain/tdnn_7b/egs
  num_data_reps=3
  
  
  min_seg_len=
  frames_per_eg=150
  # End configuration section.
  echo "$0 $@"  # Print the command line for logging
  
  . ./cmd.sh
  . ./path.sh
  . ./utils/parse_options.sh
  
  if ! cuda-compiled; then
    cat <<EOF && exit 1
  This script is intended to be used with GPUs but you have not compiled Kaldi with CUDA
  If you want to use GPUs (and have them), go to src/, and configure and make on a machine
  where "nvcc" is installed.
  EOF
  fi
  
  dir=${dir}${affix:+_$affix}
  ali_dir=exp/tri5a_rvb_ali
  treedir=exp/chain/tri6_tree_11000
  lang=data/lang_chain
  
  
  # The iVector-extraction and feature-dumping parts are the same as the standard
  # nnet3 setup, and you can skip them by setting "--stage 8" if you have already
  # run those things.
  local/nnet3/run_ivector_common.sh --stage $stage --num-data-reps 3|| exit 1;
  
  if [ $stage -le 7 ]; then
    # Create a version of the lang/ directory that has one state per phone in the
    # topo file. [note, it really has two states.. the first one is only repeated
    # once, the second one has zero or more repeats.]
    rm -rf $lang
    cp -r data/lang $lang
    silphonelist=$(cat $lang/phones/silence.csl) || exit 1;
    nonsilphonelist=$(cat $lang/phones/nonsilence.csl) || exit 1;
    # Use our special topology... note that later on may have to tune this
    # topology.
    steps/nnet3/chain/gen_topo.py $nonsilphonelist $silphonelist >$lang/topo
  fi
  
  if [ $stage -le 8 ]; then
    # Build a tree using our new topology.
    # we build the tree using clean features (data/train) rather than
    # the augmented features (data/train_rvb) to get better alignments
  
    steps/nnet3/chain/build_tree.sh --frame-subsampling-factor 3 \
        --leftmost-questions-truncate -1 \
        --cmd "$train_cmd" 11000 data/train $lang exp/tri5a $treedir
  fi
  
  if [ -z $min_seg_len ]; then
    min_seg_len=$(python -c "print ($frames_per_eg+5)/100.0")
  fi
  
  if [ $stage -le 9 ]; then
    rm -rf data/train_rvb_min${min_seg_len}_hires
    utils/data/combine_short_segments.sh \
        data/train_rvb_hires $min_seg_len data/train_rvb_min${min_seg_len}_hires
  
    #extract ivectors for the new data
    steps/online/nnet2/copy_data_dir.sh --utts-per-spk-max 2 \
      data/train_rvb_min${min_seg_len}_hires data/train_rvb_min${min_seg_len}_hires_max2
    ivectordir=exp/nnet3/ivectors_train_min${min_seg_len}
    if [[ $(hostname -f) == *.clsp.jhu.edu ]]; then # this shows how you can split across multiple file-systems.
      utils/create_split_dir.pl /export/b0{1,2,3,4}/$USER/kaldi-data/egs/aspire/s5/$ivectordir/storage $ivectordir/storage
    fi
  
    steps/online/nnet2/extract_ivectors_online.sh --cmd "$train_cmd" --nj 200 \
      data/train_rvb_min${min_seg_len}_hires_max2 \
      exp/nnet3/extractor $ivectordir || exit 1;
  
   # combine the non-hires features for alignments/lattices
   rm -rf data/${latgen_train_set}_min${min_seg_len}
    utt_prefix="THISISUNIQUESTRING_"
    spk_prefix="THISISUNIQUESTRING_"
    utils/copy_data_dir.sh --spk-prefix "$spk_prefix" --utt-prefix "$utt_prefix" \
      data/train data/train_temp_for_lats
    utils/data/combine_short_segments.sh \
        data/train_temp_for_lats $min_seg_len data/train_min${min_seg_len}
  fi
  
  if [ $stage -le 10 ]; then
    # Get the alignments as lattices (gives the chain training more freedom).
    # use the same num-jobs as the alignments
    nj=200
    lat_dir=exp/tri5a_min${min_seg_len}_lats
    steps/align_fmllr_lats.sh --nj $nj --cmd "$train_cmd" data/train_min${min_seg_len} \
      data/lang exp/tri5a $lat_dir
    rm -f $lat_dir/fsts.*.gz # save space
  
    rvb_lat_dir=exp/tri5a_rvb_min${min_seg_len}_lats
    #mkdir -p $rvb_lat_dir/temp/
    #lattice-copy "ark:gunzip -c $lat_dir/lat.*.gz |" ark,scp:$rvb_lat_dir/temp/lats.ark,$rvb_lat_dir/temp/lats.scp
  
    # copy the lattices for the reverberated data
    rm -f $rvb_lat_dir/temp/combined_lats.scp
    touch $rvb_lat_dir/temp/combined_lats.scp
    for i in `seq 1 $num_data_reps`; do
      cat $rvb_lat_dir/temp/lats.scp | sed -e "s/THISISUNIQUESTRING/rev${i}/g" >> $rvb_lat_dir/temp/combined_lats.scp
    done
    sort -u $rvb_lat_dir/temp/combined_lats.scp > $rvb_lat_dir/temp/combined_lats_sorted.scp
  
    lattice-copy scp:$rvb_lat_dir/temp/combined_lats_sorted.scp "ark:|gzip -c >$rvb_lat_dir/lat.1.gz" || exit 1;
    echo "1" > $rvb_lat_dir/num_jobs
  
    # copy other files from original lattice dir
    for f in cmvn_opts final.mdl splice_opts tree; do
      cp $lat_dir/$f $rvb_lat_dir/$f
    done
  
  fi
  
  if [ $stage -le 11 ]; then
    echo "$0: creating neural net configs";
  
    # create the config files for nnet initialization
    steps/nnet3/tdnn/make_configs.py \
      --self-repair-scale-nonlinearity 0.00001 \
      --feat-dir data/train_rvb_hires \
      --ivector-dir exp/nnet3/ivectors_train_min${min_seg_len} \
      --tree-dir $treedir \
      --relu-dim 768 \
      --splice-indexes "-1,0,1 -1,0,1,2 -3,0,3 -3,0,3 -3,0,3 -6,-3,0 0" \
      --use-presoftmax-prior-scale false \
      --xent-regularize 0.1 \
      --xent-separate-forward-affine true \
      --include-log-softmax false \
      --final-layer-normalize-target 0.5 \
      $dir/configs || exit 1;
  fi
  
  if [ $stage -le 12 ]; then
    if [[ $(hostname -f) == *.clsp.jhu.edu ]] && [ ! -d $dir/egs/storage ]; then
      utils/create_split_dir.pl \
       /export/b0{5,6,7,8}/$USER/kaldi-data/egs/aspire-$(date +'%m_%d_%H_%M')/s5c/$dir/egs/storage $dir/egs/storage
    fi
  
    touch $dir/egs/.nodelete # keep egs around when that run dies.
  
    steps/nnet3/chain/train.py --stage $train_stage \
      --egs.dir "$common_egs_dir" \
      --cmd "$decode_cmd" \
      --feat.online-ivector-dir exp/nnet3/ivectors_train_min${min_seg_len} \
      --feat.cmvn-opts "--norm-means=false --norm-vars=false" \
      --chain.xent-regularize 0.1 \
      --chain.leaky-hmm-coefficient 0.1 \
      --chain.l2-regularize 0.00005 \
      --chain.apply-deriv-weights false \
      --chain.lm-opts="--num-extra-lm-states=2000" \
      --egs.stage $get_egs_stage \
      --egs.opts "--frames-overlap-per-eg 0" \
      --egs.chunk-width 150 \
      --trainer.num-chunk-per-minibatch 128 \
      --trainer.frames-per-iter 1500000 \
      --trainer.num-epochs $num_epochs \
      --trainer.optimization.num-jobs-initial 3 \
      --trainer.optimization.num-jobs-final 16 \
      --trainer.optimization.initial-effective-lrate 0.001 \
      --trainer.optimization.final-effective-lrate 0.0001 \
      --trainer.max-param-change 2.0 \
      --cleanup.remove-egs $remove_egs \
      --feat-dir data/train_rvb_min${min_seg_len}_hires \
      --tree-dir $treedir \
      --lat-dir exp/tri5a_rvb_min${min_seg_len}_lats \
      --dir $dir  || exit 1;
  fi
  
  if [ $stage -le 13 ]; then
    # Note: it might appear that this $lang directory is mismatched, and it is as
    # far as the 'topo' is concerned, but this script doesn't read the 'topo' from
    # the lang directory.
    utils/mkgraph.sh --self-loop-scale 1.0 data/lang_pp_test $dir $dir/graph_pp
  fi
  
  if [ $stage -le 14 ]; then
  # %WER 28.2 | 2120 27218 | 77.3 12.5 10.2 5.6 28.2 75.6 | -0.544 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iterfinal_pp_fg/score_10/penalty_0.0/ctm.filt.filt.sys
    local/nnet3/prep_test_aspire.sh --stage 1 --decode-num-jobs 30 --affix "v7" \
     --acwt 1.0 --post-decode-acwt 10.0 \
     --window 10 --overlap 5 \
     --sub-speaker-frames 6000 --max-count 75 --ivector-scale 0.75 \
     --pass2-decode-opts "--min-active 1000" \
     dev_aspire data/lang $dir/graph_pp $dir
  fi
  
  exit 0;
  
  #%WER 29.5 | 2120 27215 | 75.7 12.9 11.4 5.2 29.5 76.5 | -0.492 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter400_pp_fg/score_10/penalty_0.0/ctm.filt.filt.sys
  #%WER 29.1 | 2120 27219 | 77.0 13.9 9.1 6.1 29.1 76.0 | -0.576 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter600_pp_fg/score_9/penalty_0.0/ctm.filt.filt.sys
  #%WER 28.7 | 2120 27219 | 77.0 13.7 9.3 5.7 28.7 75.0 | -0.552 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter700_pp_fg/score_9/penalty_0.0/ctm.filt.filt.sys
  #%WER 28.8 | 2120 27216 | 77.2 13.9 8.9 5.9 28.8 75.7 | -0.552 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter800_pp_fg/score_9/penalty_0.0/ctm.filt.filt.sys
  #%WER 28.2 | 2120 27215 | 77.2 12.5 10.2 5.5 28.2 75.4 | -0.495 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter1000_pp_fg/score_10/penalty_0.0/ctm.filt.filt.sys
  #%WER 28.5 | 2120 27219 | 77.5 13.6 8.9 6.0 28.5 75.3 | -0.578 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter1100_pp_fg/score_9/penalty_0.0/ctm.filt.filt.sys
  #%WER 28.2 | 2120 27218 | 77.8 13.5 8.7 5.9 28.2 74.7 | -0.559 | exp/chain/tdnn_asp_1/decode_dev_aspire_whole_uniformsegmented_win10_over5_v7_iter1500_pp_fg/score_9/penalty_0.0/ctm.filt.filt.sys