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