CoolFace
Modelpublic

istupakov/canary-1b-flash-onnx

sourceHugging Facecc-by-4.0updated 7mo agoView on Hugging Face
1likes58downloads
Model Card

NVIDIA Canary 1B Flash model converted to ONNX format for onnx-asr.

Install onnx-asr

shell
pip install onnx-asr[cpu,hub]

Load Canary 1B Flash model and recognize wav file

py
import onnx_asr
model = onnx_asr.load_model("istupakov/canary-1b-flash-onnx")
print(model.recognize("test.wav", language="en"))
print(model.recognize("test.wav", language="en", target_language="fr"))