Automatic Speech Recognition
NeMo
Safetensors
PyTorch
Transformers
English
parakeet_rnnt
feature-extraction
speech
audio
Transducer
FastConformer
Conformer
NeMo
hf-asr-leaderboard
Eval Results (legacy)
Eval Results
Instructions to use nvidia/parakeet-rnnt-1.1b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use nvidia/parakeet-rnnt-1.1b with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("nvidia/parakeet-rnnt-1.1b") transcriptions = asr_model.transcribe(["file.wav"]) - Transformers
How to use nvidia/parakeet-rnnt-1.1b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="nvidia/parakeet-rnnt-1.1b")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("nvidia/parakeet-rnnt-1.1b", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README: available in Transformers 5.13.0
#10
by eustlb HF Staff - opened
Updates the README to note the model is available in the official Transformers 5.13.0 release, and updates the pip install snippet from a git-from-source install to pip install "transformers>=5.13.0".
nithinraok changed pull request status to merged