# Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("on1onmangoes/HF_Example")
model = AutoModelForSpeechSeq2Seq.from_pretrained("on1onmangoes/HF_Example")Quick Links
No model card
- Downloads last month
- 9
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="on1onmangoes/HF_Example")