How to use yesj1234/xlsr_enko_exp2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="yesj1234/xlsr_enko_exp2")
# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("yesj1234/xlsr_enko_exp2") model = AutoModelForCTC.from_pretrained("yesj1234/xlsr_enko_exp2")
How to fix it?