openai/whisper-large-v3 model.optimum.onnxruntime.ORTModelForSpeechSeq2Seq.1from optimum.onnxruntime import ORTModelForSpeechSeq2Seq
2from transformers import WhisperProcessor
3
4model_name = "mirekphd/whisper-large-v3-onnx-w8a16-dynamic"
5processor = WhisperProcessor.from_pretrained(model_name)
6model = ORTModelForSpeechSeq2Seq.from_pretrained(model_name)
7
8# ... add your inference code here ...