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