How to use esc-benchmark/wav2vec2-aed-librispeech with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="esc-benchmark/wav2vec2-aed-librispeech")
# Load model directly from transformers import AutoTokenizer, AutoModelForSpeechSeq2Seq tokenizer = AutoTokenizer.from_pretrained("esc-benchmark/wav2vec2-aed-librispeech") model = AutoModelForSpeechSeq2Seq.from_pretrained("esc-benchmark/wav2vec2-aed-librispeech")