End of training 34a583c
Golshid Shekoufandeh commited on
How to use golesheed/wav2vec2-large-xls-r-1b-cv-13-elderly-frisian with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="golesheed/wav2vec2-large-xls-r-1b-cv-13-elderly-frisian") # Load model directly
from transformers import AutoProcessor, AutoModelForCTC
processor = AutoProcessor.from_pretrained("golesheed/wav2vec2-large-xls-r-1b-cv-13-elderly-frisian")
model = AutoModelForCTC.from_pretrained("golesheed/wav2vec2-large-xls-r-1b-cv-13-elderly-frisian", device_map="auto")