This model is an ONNX-format export of the model available at
projecte-aina/whisper-large-v3-tiny-caesar, for ease of use in edge devices and CPU-based inference environments.
1import onnx_asr
2model = onnx_asr.load_model("OpenVoiceOS/whisper-large-v3-tiny-caesar-onnx")
3print(model.recognize("test.wav"))
1$ optimum-cli export onnx --task automatic-speech-recognition-with-past --model projecte-aina/whisper-large-v3-tiny-caesar whisper-onnx
2$ cd whisper-onnx && rm decoder.onnx* decoder_with_past_model.onnx* # only the merged decoder is needed
The license is derived from the original model: Apache 2.0. For more details, please refer to
projecte-aina/whisper-large-v3-tiny-caesar.