Update README.md
Browse files
README.md
CHANGED
@@ -4,13 +4,16 @@ license: apache-2.0
|
|
4 |
|
5 |
The results:
|
6 |
|
7 |
-
Vocab size | Greedy search(dev & test) | Modified beam search(dev & test) | Fast beam search (dev & test) | Fast beam search LG (dev & test) | comments
|
8 |
-
|
9 |
-
500 | 4.31 & 4.59 | 4.25 & 4.54 | 4.27 & 4.55 | 4.07 & 4.38 | --epoch 48 --avg 29
|
|
|
|
|
10 |
|
11 |
The training command:
|
12 |
|
13 |
-
|
|
|
14 |
export CUDA_VISIBLE_DEVICES="4,5,6,7"
|
15 |
|
16 |
./pruned_transducer_stateless7_bbpe/train.py \
|
@@ -25,9 +28,11 @@ export CUDA_VISIBLE_DEVICES="4,5,6,7"
|
|
25 |
--master-port 12535
|
26 |
```
|
27 |
|
|
|
28 |
The decoding command:
|
29 |
|
30 |
-
|
|
|
31 |
for m in greedy_search modified_beam_search fast_beam_search fast_beam_search_LG; do
|
32 |
./pruned_transducer_stateless7_bbpe/decode.py \
|
33 |
--epoch 48 \
|
|
|
4 |
|
5 |
The results:
|
6 |
|
7 |
+
|Vocab size | Greedy search(dev & test) | Modified beam search(dev & test) | Fast beam search (dev & test) | Fast beam search LG (dev & test) | comments|
|
8 |
+
|-- | -- | -- | -- | -- | --|
|
9 |
+
|500 | 4.31 & 4.59 | 4.25 & 4.54 | 4.27 & 4.55 | 4.07 & 4.38 | --epoch 48 --avg 29|
|
10 |
+
|
11 |
+
|
12 |
|
13 |
The training command:
|
14 |
|
15 |
+
|
16 |
+
```bash
|
17 |
export CUDA_VISIBLE_DEVICES="4,5,6,7"
|
18 |
|
19 |
./pruned_transducer_stateless7_bbpe/train.py \
|
|
|
28 |
--master-port 12535
|
29 |
```
|
30 |
|
31 |
+
|
32 |
The decoding command:
|
33 |
|
34 |
+
|
35 |
+
```bash
|
36 |
for m in greedy_search modified_beam_search fast_beam_search fast_beam_search_LG; do
|
37 |
./pruned_transducer_stateless7_bbpe/decode.py \
|
38 |
--epoch 48 \
|