Add missing tokenizer & processor configs 482c250
root commited on
How to use chris365312/whisper-large-v3-de-at with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="chris365312/whisper-large-v3-de-at") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("chris365312/whisper-large-v3-de-at")
model = AutoModelForSpeechSeq2Seq.from_pretrained("chris365312/whisper-large-v3-de-at", device_map="auto")