mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-09 01:52:41 +00:00
typos fixed (#1472)
This commit is contained in:
parent
559ed150bb
commit
9c494a3329
12
README.md
12
README.md
@ -116,7 +116,7 @@ We provide a Colab notebook to test the pre-trained model: [](https://colab.research.google.com/drive/1_u6yK9jDkPwG_NLrZMN2XK7Aeq4suMO2?usp=sharing)
|
We provide a Colab notebook to test the pre-trained model: [](https://colab.research.google.com/drive/1_u6yK9jDkPwG_NLrZMN2XK7Aeq4suMO2?usp=sharing)
|
||||||
|
|
||||||
@ -127,7 +127,7 @@ We provide a Colab notebook to test the pre-trained model: [ | 2.56 | 6.27 |
|
| modified_beam_search (`beam_size=4`) | 2.56 | 6.27 |
|
||||||
|
|
||||||
|
|
||||||
We provide a Colab notebook to run test the pre-trained model: [](https://colab.research.google.com/drive/1CO1bXJ-2khDckZIW8zjOPHGSKLHpTDlp?usp=sharing)
|
We provide a Colab notebook to test the pre-trained model: [](https://colab.research.google.com/drive/1CO1bXJ-2khDckZIW8zjOPHGSKLHpTDlp?usp=sharing)
|
||||||
|
|
||||||
|
|
||||||
#### [Transducer (Zipformer Encoder + Stateless Predictor)](https://github.com/k2-fsa/icefall/tree/master/egs/librispeech/ASR/zipformer)
|
#### [Transducer (Zipformer Encoder + Stateless Predictor)](https://github.com/k2-fsa/icefall/tree/master/egs/librispeech/ASR/zipformer)
|
||||||
@ -147,14 +147,14 @@ WER (modified_beam_search `beam_size=4` unless further stated)
|
|||||||
|
|
||||||
| Encoder | Params | test-clean | test-other |
|
| Encoder | Params | test-clean | test-other |
|
||||||
|-----------------|--------|------------|------------|
|
|-----------------|--------|------------|------------|
|
||||||
| Zipformer | 65.5M | 1.78 | 4.08 |
|
| Zipformer | 65.5M | 1.78 | 4.08 |
|
||||||
|
|
||||||
|
|
||||||
3. LibriSpeech-960hr + GigaSpeech + CommonVoice
|
3. LibriSpeech-960hr + GigaSpeech + CommonVoice
|
||||||
|
|
||||||
| Encoder | Params | test-clean | test-other |
|
| Encoder | Params | test-clean | test-other |
|
||||||
|-----------------|--------|------------|------------|
|
|-----------------|--------|------------|------------|
|
||||||
| Zipformer | 65.5M | 1.90 | 3.98 |
|
| Zipformer | 65.5M | 1.90 | 3.98 |
|
||||||
|
|
||||||
|
|
||||||
### [GigaSpeech][gigaspeech]
|
### [GigaSpeech][gigaspeech]
|
||||||
@ -246,7 +246,7 @@ We provide a Colab notebook to test the pre-trained model: [](https://github.com/k2-fsa/icefall/tree/master/egs/tedlium3/ASR/transducer_stateless)
|
#### [Transducer (Conformer Encoder + Stateless Predictor)](https://github.com/k2-fsa/icefall/tree/master/egs/tedlium3/ASR/transducer_stateless)
|
||||||
|
|
||||||
| | dev | test |
|
| | dev | test |
|
||||||
|--------------------------------------|-------|--------|
|
|--------------------------------------|-------|--------|
|
||||||
@ -287,7 +287,7 @@ We provide a Colab notebook to test the pre-trained model: [](https://colab.research.google.com/drive/1EV4e1CHa1GZgEF-bZgizqI9RyFFehIiN?usp=sharing)
|
We provide a Colab notebook to test the pre-trained model: [](https://colab.research.google.com/drive/1EV4e1CHa1GZgEF-bZgizqI9RyFFehIiN?usp=sharing)
|
||||||
|
|
||||||
#### [Transducer **Streaming** (pruned_transducer_stateless5) ](https://github.com/k2-fsa/icefall/tree/master/egs/wenetspeech/ASR/pruned_transducer_stateless5)
|
#### [Transducer **Streaming** (pruned_transducer_stateless5) ](https://github.com/k2-fsa/icefall/tree/master/egs/wenetspeech/ASR/pruned_transducer_stateless5)
|
||||||
|
|
||||||
|
@ -67,14 +67,14 @@ def get_args():
|
|||||||
"--start",
|
"--start",
|
||||||
type=int,
|
type=int,
|
||||||
default=0,
|
default=0,
|
||||||
help="Process pieces starting from this number (inclusive).",
|
help="Process pieces starting from this number (included).",
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--stop",
|
"--stop",
|
||||||
type=int,
|
type=int,
|
||||||
default=-1,
|
default=-1,
|
||||||
help="Stop processing pieces until this number (exclusive).",
|
help="Stop processing pieces until this number (excluded).",
|
||||||
)
|
)
|
||||||
|
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
@ -78,14 +78,14 @@ def get_parser():
|
|||||||
"--start",
|
"--start",
|
||||||
type=int,
|
type=int,
|
||||||
default=0,
|
default=0,
|
||||||
help="Process pieces starting from this number (inclusive).",
|
help="Process pieces starting from this number (included).",
|
||||||
)
|
)
|
||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--stop",
|
"--stop",
|
||||||
type=int,
|
type=int,
|
||||||
default=-1,
|
default=-1,
|
||||||
help="Stop processing pieces until this number (exclusive).",
|
help="Stop processing pieces until this number (excluded).",
|
||||||
)
|
)
|
||||||
return parser
|
return parser
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user