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