speechbrainteam
commited on
Commit
·
6bbde74
1
Parent(s):
e51c900
Update README.md
Browse files
README.md
CHANGED
@@ -5,7 +5,7 @@ tags:
|
|
5 |
- ASR
|
6 |
- CTC
|
7 |
- Attention
|
8 |
-
-
|
9 |
- pytorch
|
10 |
license: "apache-2.0"
|
11 |
datasets:
|
@@ -19,7 +19,7 @@ metrics:
|
|
19 |
|
20 |
This repository provides all the necessary tools to perform automatic speech
|
21 |
recognition from an end-to-end system pretrained on LibriSpeech (EN) within
|
22 |
-
SpeechBrain. For a better experience we encourage you to learn more about
|
23 |
[SpeechBrain](https://speechbrain.github.io). The given ASR model performance are:
|
24 |
|
25 |
| Release | Test clean WER | Test other WER | GPUs |
|
@@ -28,18 +28,18 @@ SpeechBrain. For a better experience we encourage you to learn more about
|
|
28 |
|
29 |
## Pipeline description
|
30 |
|
31 |
-
This ASR system is composed
|
32 |
1. Tokenizer (unigram) that transforms words into subword units and trained with
|
33 |
the train transcriptions of LibriSpeech.
|
34 |
2. Neural language model (Transformer LM) trained on the full 10M words dataset.
|
35 |
3. Acoustic model made of a transformer encoder and a joint decoder with CTC +
|
36 |
-
transformer. Hence, the decoding also
|
37 |
|
38 |
## Intended uses & limitations
|
39 |
|
40 |
-
This model has been
|
41 |
-
for the
|
42 |
-
detailed above can be extracted and connected to
|
43 |
installed.
|
44 |
|
45 |
## Install SpeechBrain
|
|
|
5 |
- ASR
|
6 |
- CTC
|
7 |
- Attention
|
8 |
+
- Transformer
|
9 |
- pytorch
|
10 |
license: "apache-2.0"
|
11 |
datasets:
|
|
|
19 |
|
20 |
This repository provides all the necessary tools to perform automatic speech
|
21 |
recognition from an end-to-end system pretrained on LibriSpeech (EN) within
|
22 |
+
SpeechBrain. For a better experience, we encourage you to learn more about
|
23 |
[SpeechBrain](https://speechbrain.github.io). The given ASR model performance are:
|
24 |
|
25 |
| Release | Test clean WER | Test other WER | GPUs |
|
|
|
28 |
|
29 |
## Pipeline description
|
30 |
|
31 |
+
This ASR system is composed of 3 different but linked blocks:
|
32 |
1. Tokenizer (unigram) that transforms words into subword units and trained with
|
33 |
the train transcriptions of LibriSpeech.
|
34 |
2. Neural language model (Transformer LM) trained on the full 10M words dataset.
|
35 |
3. Acoustic model made of a transformer encoder and a joint decoder with CTC +
|
36 |
+
transformer. Hence, the decoding also incorporates the CTC probabilities.
|
37 |
|
38 |
## Intended uses & limitations
|
39 |
|
40 |
+
This model has been primarily developed to be run within SpeechBrain as a pretrained ASR model
|
41 |
+
for the English language. Thanks to the flexibility of SpeechBrain, any of the 3 blocks
|
42 |
+
detailed above can be extracted and connected to your custom pipeline as long as SpeechBrain is
|
43 |
installed.
|
44 |
|
45 |
## Install SpeechBrain
|