Harveenchadha/indic-voice
Updated • 13 • 6
How to use Harveenchadha/hindi_model_with_lm_vakyansh with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="Harveenchadha/hindi_model_with_lm_vakyansh") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("Harveenchadha/hindi_model_with_lm_vakyansh")
model = AutoModelForCTC.from_pretrained("Harveenchadha/hindi_model_with_lm_vakyansh")