Views
No views yet
whisper model type — works with stock onnx-asr, no patches needed).
fp32 and int8 variants included; int8 decoder produced by quantizing the pre-merge
decoders and re-merging (the merged graph's If-subgraphs defeat direct quantization).1import onnx_asr
2model = onnx_asr.load_model("whisper", "path/to/this/repo") # or quantization="int8"
3print(model.recognize("audio_16khz.wav", language="pt"))