Transformers How to use on1onmangoes/HF_Example with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="on1onmangoes/HF_Example") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("on1onmangoes/HF_Example")
model = AutoModelForSpeechSeq2Seq.from_pretrained("on1onmangoes/HF_Example")