Views
No views yet
distil-whisper/distil-large-v3conv1.weight, layers.*, etc.).1from huggingface_hub import snapshot_download
2import onnxruntime as ort
3import os
4
5# Download entire snapshot including all external data files
6repo_dir = snapshot_download(repo_id="aoiandroid/distil-whisper-large-v3-onnx-fp32")
7model_path = os.path.join(repo_dir, "distil_whisper_seq2seq_fp32.onnx")
8
9session = ort.InferenceSession(model_path)