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