Instructions to use onnx-community/Voxtral-Mini-3B-2507-ONNX with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers.js
How to use onnx-community/Voxtral-Mini-3B-2507-ONNX with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('audio-text-to-text', 'onnx-community/Voxtral-Mini-3B-2507-ONNX');
Update config.json
Browse files- config.json +7 -0
config.json
CHANGED
|
@@ -60,6 +60,13 @@
|
|
| 60 |
},
|
| 61 |
"use_external_data_format": {
|
| 62 |
"audio_encoder.onnx": 2,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
"decoder_model_merged.onnx": 8,
|
| 64 |
"decoder_model_merged_fp16.onnx": 4,
|
| 65 |
"decoder_model_merged_q4.onnx": 2,
|
|
|
|
| 60 |
},
|
| 61 |
"use_external_data_format": {
|
| 62 |
"audio_encoder.onnx": 2,
|
| 63 |
+
"audio_encoder_fp16.onnx": 1,
|
| 64 |
+
"audio_encoder_int8.onnx": 1,
|
| 65 |
+
"audio_encoder_uint8.onnx": 1,
|
| 66 |
+
"audio_encoder_quantized.onnx": 1,
|
| 67 |
+
"audio_encoder_q4.onnx": 1,
|
| 68 |
+
"audio_encoder_q4f16.onnx": 1,
|
| 69 |
+
"audio_encoder_bnb4.onnx": 1,
|
| 70 |
"decoder_model_merged.onnx": 8,
|
| 71 |
"decoder_model_merged_fp16.onnx": 4,
|
| 72 |
"decoder_model_merged_q4.onnx": 2,
|