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