End of training 4321a45
Karan Chand commited on
How to use KaranChand/wav2vec2-XLSR-ft-150 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="KaranChand/wav2vec2-XLSR-ft-150") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("KaranChand/wav2vec2-XLSR-ft-150")
model = AutoModelForCTC.from_pretrained("KaranChand/wav2vec2-XLSR-ft-150", device_map="auto")