openslr/librispeech_asr
Viewer • Updated • 585k • 102k • 224
How to use animaslabs/parakeet-ctc-0.6b with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="animaslabs/parakeet-ctc-0.6b") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("animaslabs/parakeet-ctc-0.6b", dtype="auto")This model was converted to PyTorch safetensors format from nvidia/parakeet-ctc-0.6b using the scripts in this github repo. Please refer to original model card for more details on the model.
This model is provided in PyTorch safetensors format. It can be loaded using the safetensors library:
from safetensors.torch import load_file
weights = load_file("model.safetensors")
For inference, please refer to the original model card for usage instructions and compatible libraries.
Base model
nvidia/parakeet-ctc-0.6b