Duplicated from openai/whisper-large
How to use keess/whisper-model-internal with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="keess/whisper-model-internal")
# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("keess/whisper-model-internal") model = AutoModelForSpeechSeq2Seq.from_pretrained("keess/whisper-model-internal")