darkproger
commited on
Commit
·
c4921a3
1
Parent(s):
809cebf
Update README.md
Browse files
README.md
CHANGED
@@ -27,8 +27,43 @@ model-index:
|
|
27 |
value: 13.37
|
28 |
---
|
29 |
|
30 |
-
`pruned_transducer_stateless5` for Ukrainian: https://github.com/proger/icefall/tree/uk
|
31 |
|
32 |
[Data Filtering](https://github.com/proger/uk)
|
33 |
|
34 |
-
[Tensorboard run](https://tensorboard.dev/experiment/8WizOEvHR8CqmQAOsr4ALg/)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
value: 13.37
|
28 |
---
|
29 |
|
30 |
+
`pruned_transducer_stateless5` with Conformer encoder for Ukrainian: https://github.com/proger/icefall/tree/uk
|
31 |
|
32 |
[Data Filtering](https://github.com/proger/uk)
|
33 |
|
34 |
+
[Tensorboard run](https://tensorboard.dev/experiment/8WizOEvHR8CqmQAOsr4ALg/)
|
35 |
+
|
36 |
+
```
|
37 |
+
./pruned_transducer_stateless5/train.py \
|
38 |
+
--world-size 2 \
|
39 |
+
--num-epochs 30 \
|
40 |
+
--start-epoch 1 \
|
41 |
+
--full-libri 1 \
|
42 |
+
--exp-dir pruned_transducer_stateless5/exp-uk-shuf \
|
43 |
+
--max-duration 500 \
|
44 |
+
--use-fp16 1 \
|
45 |
+
--num-encoder-layers 18 \
|
46 |
+
--dim-feedforward 1024 \
|
47 |
+
--nhead 4 \
|
48 |
+
--encoder-dim 256 \
|
49 |
+
--decoder-dim 512 \
|
50 |
+
--joiner-dim 512 \
|
51 |
+
--bpe-model uk/data/lang_bpe_250/bpe.model
|
52 |
+
```
|
53 |
+
|
54 |
+
```
|
55 |
+
./pruned_transducer_stateless5/decode.py \
|
56 |
+
--epoch 27 \
|
57 |
+
--avg 15 \
|
58 |
+
--use-averaged-model True \
|
59 |
+
--exp-dir pruned_transducer_stateless5/exp-uk-shuf \
|
60 |
+
--decoding-method fast_beam_search \
|
61 |
+
--num-encoder-layers 18 \
|
62 |
+
--dim-feedforward 1024 \
|
63 |
+
--nhead 4 \
|
64 |
+
--encoder-dim 256 \
|
65 |
+
--decoder-dim 512 \
|
66 |
+
--joiner-dim 512 \
|
67 |
+
--bpe-model uk/data/lang_bpe_250/bpe.model \
|
68 |
+
--lang-dir uk/data/lang_bpe_250
|
69 |
+
```
|