csukuangfj commited on
Commit
13342fe
1 Parent(s): db55216
exp/decode-2.sh ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="1"
4
+
5
+ # for epoch in 7 6 5 4 3; do
6
+ for m in greedy_search fast_beam_search modified_beam_search; do
7
+ # for iter in 224000 222000 220000; do
8
+ # for iter in 232000 230000 228000 226000; do
9
+ # for iter in 256000 254000 252000 250000 248000 246000; do
10
+ # for iter in 258000 254000 252000 250000 248000 246000; do
11
+ # for iter in 260000; do
12
+ # for iter in 264000 262000; do
13
+ # for iter in 288000 286000 284000 282000 280000 278000; do
14
+ # for iter in 288000 286000 284000 282000 280000 278000; do
15
+ # for iter in 308000 306000 304000 302000 300000 ; do
16
+ for iter in 474000; do
17
+ for avg in 8 10 12 14 16 18; do
18
+ ./lstm_transducer_stateless2/decode.py \
19
+ --iter $iter \
20
+ --avg $avg \
21
+ --exp-dir lstm_transducer_stateless2/exp \
22
+ --max-duration 600 \
23
+ --num-encoder-layers 12 \
24
+ --rnn-hidden-size 1024 \
25
+ --decoding-method $m \
26
+ --use-averaged-model True \
27
+ --beam 4 \
28
+ --max-contexts 4 \
29
+ --max-states 8 \
30
+ --beam-size 4
31
+ done
32
+ done
33
+ done
exp/decode.sh ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="1"
4
+
5
+ for m in greedy_search fast_beam_search modified_beam_search; do
6
+ for epoch in 17; do
7
+ for avg in 1 2; do
8
+ ./lstm_transducer_stateless2/decode.py \
9
+ --epoch $epoch \
10
+ --avg $avg \
11
+ --exp-dir lstm_transducer_stateless2/exp \
12
+ --max-duration 600 \
13
+ --num-encoder-layers 12 \
14
+ --rnn-hidden-size 1024 \
15
+ --decoding-method $m \
16
+ --use-averaged-model True \
17
+ --beam 4 \
18
+ --max-contexts 4 \
19
+ --max-states 8 \
20
+ --beam-size 4
21
+ done
22
+ done
23
+ done
exp/log/log-train-2022-08-20-00-34-52-0 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-1 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-2 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-3 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-4 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-5 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-6 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-20-00-34-52-7 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-0 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-1 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-2 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-3 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-4 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-5 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-6 ADDED
The diff for this file is too large to render. See raw diff
exp/log/log-train-2022-08-26-17-12-43-7 ADDED
The diff for this file is too large to render. See raw diff
exp/run-pruned-rnnt-lstm2.sh ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="0,1,2,3,4,5,6,7"
4
+
5
+ . path.sh
6
+
7
+ ./lstm_transducer_stateless2/train.py \
8
+ --world-size 8 \
9
+ --num-epochs 35 \
10
+ --start-epoch 10 \
11
+ --full-libri 1 \
12
+ --exp-dir lstm_transducer_stateless2/exp \
13
+ --max-duration 500 \
14
+ --use-fp16 0 \
15
+ --lr-epochs 10 \
16
+ --num-workers 2 \
17
+ --giga-prob 0.9