-
Notifications
You must be signed in to change notification settings - Fork 2
/
run-e2e.sh
263 lines (235 loc) · 12.8 KB
/
run-e2e.sh
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/bin/bash
set -eu
stage=3
. path.sh
. cmd.sh
. utils/parse_options.sh
if [ $stage -le 3 ]; then
local/chain_e2e/build_new_tree.sh \
--type biphone \
--min_biphone_count 100 \
--min_monophone_count 10 \
--tie true \
data/train_960/ \
data/lang_chain \
exp/chain_e2e/tree
fi
num_units=$(tree-info exp/chain_e2e/tree/tree | grep "num-pdfs" | cut -d" " -f2)
seed=2602
if [ $stage -le 5 ]; then
local/chain/prepare_graph_clustered.sh \
--dataroot data \
--trainset train_960 \
--validset dev_all \
--lang data/lang_chain \
--treedir exp/chain_e2e/tree \
--graph exp/chain_e2e/graph
fi
if [ $stage -le 6 ]; then
local/chain_e2e/run-training.sh \
--treedir exp/chain_e2e/tree \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e.yaml"
fi
if [ $stage -le 7 ]; then
utils/mkgraph.sh --self-loop-scale 1.0 data/lang_bpe.5000.varikn/ exp/chain_e2e/graph exp/chain_e2e/graph/graph_bpe.5000.varikn
fi
if [ $stage -le 8 ]; then
local/chain/decode.sh --datadir data/dev_clean \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10/${seed}-${num_units}units/decode_dev_clean_bpe.5000.varikn_acwt1.0"
local/chain/decode.sh --datadir data/dev_other/ \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10/${seed}-${num_units}units/decode_dev_other_bpe.5000.varikn_acwt1.0"
fi
if [ $stage -le 9 ]; then
local/chain_e2e/run-training.sh \
--treedir exp/chain_e2e/tree \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e-contd.yaml"
fi
if [ $stage -le 10 ]; then
local/chain/decode.sh --datadir data/dev_clean \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_bpe.5000.varikn_acwt1.0"
local/chain/decode.sh --datadir data/dev_other/ \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_bpe.5000.varikn_acwt1.0"
fi
if [ $stage -le 11 ]; then
local/chain/decode.sh --datadir data/test_clean \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_bpe.5000.varikn_acwt1.0"
local/chain/decode.sh --datadir data/test_other/ \
--hparams "hyperparams/chain/New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_bpe.5000.varikn_acwt1.0"
fi
if [ $stage -le 12 ]; then
utils/mkgraph.sh --self-loop-scale 1.0 data/lang_3gram_pruned_char/ exp/chain_e2e/tree exp/chain_e2e/graph/graph_3gram_pruned_char
fi
if [ $stage -le 12 ]; then
local/chain/decode.sh \
--skip_scoring true \
--stage 2 --posteriors_from "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_bpe.5000.varikn_acwt1.0/" \
--tree exp/chain_e2e/tree \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/dev_other" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
fi
if [ $stage -le 13 ]; then
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/dev_clean exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_4gram_char_rescored_acwt1.0
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat --max_lmwt 22" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/dev_other exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_4gram_char_rescored_acwt1.0
fi
if [ $stage -le 14 ]; then
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/test_clean" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/test_other" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
fi
if [ $stage -le 15 ]; then
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/test_clean exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_4gram_char_rescored_acwt1.0
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat --max_lmwt 22" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/test_other exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_4gram_char_rescored_acwt1.0
fi
if [ $stage -le 16 ]; then
local/chain_e2e/run-training.sh \
--treedir exp/chain_e2e/tree \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e.yaml"
fi
if [ $stage -le 17 ]; then
local/chain_e2e/run-training.sh \
--treedir exp/chain_e2e/tree \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e-contd.yaml"
fi
if [ $stage -le 18 ]; then
local/chain/decode.sh --datadir data/dev_clean \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_bpe.5000.varikn_acwt1.0"
local/chain/decode.sh --datadir data/dev_other/ \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_bpe.5000.varikn_acwt1.0"
fi
if [ $stage -le 19 ]; then
local/chain/decode.sh --datadir data/test_clean \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_bpe.5000.varikn_acwt1.0"
local/chain/decode.sh --datadir data/test_other/ \
--hparams "hyperparams/chain/FIX-New-CRDNN-FF-10-e2e-contd.yaml" \
--py_script local/chain_e2e/sb-test-lfmmi-e2e.py \
--tree exp/chain_e2e/tree \
--graphdir exp/chain_e2e/graph/graph_bpe.5000.varikn \
--acwt 1.0 --post-decode-acwt 10.0 \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_bpe.5000.varikn_acwt1.0"
fi
if [ $stage -le 20 ]; then
local/chain/decode.sh \
--skip_scoring true \
--stage 2 --posteriors_from "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_bpe.5000.varikn_acwt1.0/" \
--tree exp/chain_e2e/tree \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/dev_other" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
fi
if [ $stage -le 21 ]; then
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/dev_clean exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_clean_4gram_char_rescored_acwt1.0
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat --max_lmwt 22" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/dev_other exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_dev_other_4gram_char_rescored_acwt1.0
fi
if [ $stage -le 22 ]; then
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/test_clean" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
local/chain/decode.sh \
--skip_scoring true \
--datadir "data/test_other" \
--tree exp/chain_e2e/tree \
--stage 2 --posteriors_from "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_bpe.5000.varikn_acwt1.0/" \
--decodedir "exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_3gram_pruned_char_acwt1.0" \
--graphdir "exp/chain_e2e/graph/graph_3gram_pruned_char"
fi
if [ $stage -le 23 ]; then
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/test_clean exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_clean_4gram_char_rescored_acwt1.0
steps/lmrescore_const_arpa.sh --scoring-opts "--hyp_filtering_cmd cat --max_lmwt 22" \
--cmd "$basic_cmd" data/lang_3gram_pruned_char/ data/lang_4gram_char_const \
data/test_other exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_3gram_pruned_char_acwt1.0 \
exp/chain_e2e/FIX-New-CRDNN-FF-10-contd/${seed}-${num_units}units/decode_test_other_4gram_char_rescored_acwt1.0
fi