How to use chrisjay/afrospeech-wav2vec-run with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="chrisjay/afrospeech-wav2vec-run")
# Load model directly from transformers import AutoProcessor, AutoModelForAudioClassification processor = AutoProcessor.from_pretrained("chrisjay/afrospeech-wav2vec-run") model = AutoModelForAudioClassification.from_pretrained("chrisjay/afrospeech-wav2vec-run")