Add training results 264a841
Sanchit Gandhi commited on
How to use sanchit-gandhi/distil-whisper-large-v3-de-kd with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("automatic-speech-recognition", model="sanchit-gandhi/distil-whisper-large-v3-de-kd") # Load model directly
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
processor = AutoProcessor.from_pretrained("sanchit-gandhi/distil-whisper-large-v3-de-kd")
model = AutoModelForSpeechSeq2Seq.from_pretrained("sanchit-gandhi/distil-whisper-large-v3-de-kd", device_map="auto")