Automatic Speech Recognition
NeMo
PyTorch
English
speech
audio
Transducer
FastConformer
Transformer
NeMo
hf-asr-leaderboard
Eval Results (legacy)
Eval Results
Instructions to use nvidia/stt_en_fastconformer_transducer_large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use nvidia/stt_en_fastconformer_transducer_large with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("nvidia/stt_en_fastconformer_transducer_large") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,9 +11,9 @@ datasets:
|
|
| 11 |
- National-Singapore-Corpus-Part-1
|
| 12 |
- National-Singapore-Corpus-Part-6
|
| 13 |
- vctk
|
| 14 |
-
- VoxPopuli
|
| 15 |
-
- Europarl-ASR
|
| 16 |
-
- Multilingual-LibriSpeech
|
| 17 |
- mozilla-foundation/common_voice_8_0
|
| 18 |
- MLCommons/peoples_speech
|
| 19 |
thumbnail: null
|
|
@@ -175,7 +175,8 @@ wget https://dldata-public.s3.us-east-2.amazonaws.com/2086-149220-0033.wav
|
|
| 175 |
```
|
| 176 |
Then simply do:
|
| 177 |
```
|
| 178 |
-
asr_model.transcribe(['2086-149220-0033.wav'])
|
|
|
|
| 179 |
```
|
| 180 |
|
| 181 |
### Transcribing many audio files
|
|
|
|
| 11 |
- National-Singapore-Corpus-Part-1
|
| 12 |
- National-Singapore-Corpus-Part-6
|
| 13 |
- vctk
|
| 14 |
+
- VoxPopuli
|
| 15 |
+
- Europarl-ASR
|
| 16 |
+
- Multilingual-LibriSpeech
|
| 17 |
- mozilla-foundation/common_voice_8_0
|
| 18 |
- MLCommons/peoples_speech
|
| 19 |
thumbnail: null
|
|
|
|
| 175 |
```
|
| 176 |
Then simply do:
|
| 177 |
```
|
| 178 |
+
output = asr_model.transcribe(['2086-149220-0033.wav'])
|
| 179 |
+
print(output[0].text)
|
| 180 |
```
|
| 181 |
|
| 182 |
### Transcribing many audio files
|