Automatic Speech Recognition
NeMo
PyTorch
Belarusian
speech
audio
Transducer
FastConformer
CTC
Transformer
NeMo
hf-asr-leaderboard
Eval Results (legacy)
Instructions to use nvidia/stt_be_fastconformer_hybrid_large_pc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use nvidia/stt_be_fastconformer_hybrid_large_pc with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("nvidia/stt_be_fastconformer_hybrid_large_pc") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -92,7 +92,8 @@ wget https://dldata-public.s3.us-east-2.amazonaws.com/2086-149220-0033.wav
|
|
| 92 |
```
|
| 93 |
Then simply do:
|
| 94 |
```
|
| 95 |
-
asr_model.transcribe(['2086-149220-0033.wav'])
|
|
|
|
| 96 |
```
|
| 97 |
|
| 98 |
### Transcribing many audio files
|
|
|
|
| 92 |
```
|
| 93 |
Then simply do:
|
| 94 |
```
|
| 95 |
+
output = asr_model.transcribe(['2086-149220-0033.wav'])
|
| 96 |
+
print(output[0].text)
|
| 97 |
```
|
| 98 |
|
| 99 |
### Transcribing many audio files
|